Example usage for io.netty.channel ChannelOutboundHandlerAdapter subclass-usage

List of usage examples for io.netty.channel ChannelOutboundHandlerAdapter subclass-usage

Introduction

In this page you can find the example usage for io.netty.channel ChannelOutboundHandlerAdapter subclass-usage.

Usage

From source file org.apache.giraph.comm.netty.OutboundByteCounter.java

/**
 * Keep track of the bytes sent and provide some metrics when
 * desired as part of the Netty Channel stack.
 */
@Sharable
public class OutboundByteCounter extends ChannelOutboundHandlerAdapter

From source file org.apache.hadoop.hbase.security.CryptoAESWrapHandler.java

/**
 * wrap messages with Crypto AES.
 */
@InterfaceAudience.Private
public class CryptoAESWrapHandler extends ChannelOutboundHandlerAdapter {

From source file org.apache.hadoop.hbase.security.SaslWrapHandler.java

/**
 * wrap sasl messages.
 */
@InterfaceAudience.Private
public class SaslWrapHandler extends ChannelOutboundHandlerAdapter {

From source file org.apache.tinkerpop.gremlin.server.handler.IteratorHandler.java

/**
 * This handler helps in scenarios where iteration is not being already handled later in the Netty pipeline. It is
 * important that if this handler is used at all, that it not block, thus ensure that if {@link Iterator} instances
 * are passed to it, they do not contain large result sets or iterates over objects that require network calls.
 *
 * @author Stephen Mallette (http://stephen.genoprime.com)

From source file org.asynchttpclient.netty.channel.SslInitializer.java

/**
 * On connect, replaces itself with a SslHandler that has a SSLEngine configured with the remote host and port.
 * 
 * @author slandelle
 */
public class SslInitializer extends ChannelOutboundHandlerAdapter {

From source file org.asynchttpclient.providers.netty.channel.SslInitializer.java

/**
 * On connect, replaces itself with a SslHandler that has a SSLEngine configured with the remote host and port.
 * 
 * @author slandelle
 */
public class SslInitializer extends ChannelOutboundHandlerAdapter {

From source file org.asynchttpclient.providers.netty4.channel.SslInitializer.java

/**
 * On connect, replaces itself with a SslHandler that has a SSLEngine configured with the remote host and port.
 * 
 * @author slandelle
 */
public class SslInitializer extends ChannelOutboundHandlerAdapter {

From source file org.bermuda.cartilage.core.PacketEncoder.java

/**
 * Encrypts a packet with using the famous RSA algorithm (cryptosystem)
 * @author Cartilage
 */
public class PacketEncoder extends ChannelOutboundHandlerAdapter {

From source file org.dcache.xrootd.core.XrootdEncoder.java

/**
 * Downstream ChannelHandler encoding XrootdResponse objects
 * into ByteBuf objects.
 */
@Sharable
public class XrootdEncoder extends ChannelOutboundHandlerAdapter {

From source file org.dcache.xrootd.tpc.core.XrootdClientEncoder.java

/**
 *  <p>Downstream ChannelHandler for translating {@link XrootdOutboundRequest}
 *      objects into xrootd ByteBuf objects.</p>
 *
 *  <p>Intended to support third-party client requests to a source server.</p>
 */