Class ConnectionObserverInitializer
- java.lang.Object
-
- io.servicetalk.transport.netty.internal.ConnectionObserverInitializer
-
- All Implemented Interfaces:
ChannelInitializer
public final class ConnectionObserverInitializer extends java.lang.Object implements ChannelInitializer
AChannelInitializerthat registers aConnectionObserverfor all channels.
-
-
Constructor Summary
Constructors Constructor Description ConnectionObserverInitializer(ConnectionObserver observer, boolean secure)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinit(io.netty.channel.Channel channel)Configures the passedChannel.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.servicetalk.transport.netty.internal.ChannelInitializer
andThen
-
-
-
-
Constructor Detail
-
ConnectionObserverInitializer
public ConnectionObserverInitializer(ConnectionObserver observer, boolean secure)
Creates a new instance.- Parameters:
observer-ConnectionObserverto report network events.secure-trueif the observed connection is secure
-
-
Method Detail
-
init
public void init(io.netty.channel.Channel channel)
Description copied from interface:ChannelInitializerConfigures the passedChannel.Typically, an initializer should add handlers to the channel at the end. This makes it possible for the code using the initializer to create the order of the handlers in the pipeline.
- Specified by:
initin interfaceChannelInitializer- Parameters:
channel- NettyChannel.
-
-