Position
public enum Position
A Position
within the ChannelPipeline
used to insert handlers into the ChannelPipeline
.
-
The first
ChannelHandler
– the front of theChannelPipeline
.Declaration
Swift
case first
-
The last
ChannelHandler
– the back of theChannelPipeline
.Declaration
Swift
case last
-
Before the given
ChannelHandler
.Declaration
Swift
case before(ChannelHandler)
-
After the given
ChannelHandler
.Declaration
Swift
case after(ChannelHandler)