_EmittingChannelHandler
public protocol _EmittingChannelHandler
ChannelHandler which will emit data by calling ChannelHandlerContext.write
.
We strongly advice against implementing this protocol directly. Please implement ChannelInboundHandler
or / and ChannelOutboundHandler
.
-
The type of the outbound data which will be forwarded to the next
ChannelOutboundHandler
in theChannelPipeline
.Declaration
Swift
associatedtype OutboundOut = Never
-
wrapOutboundOut(_:
Default implementation) Wrap the provided
OutboundOut
that will be passed to the nextChannelOutboundHandler
by callingChannelHandlerContext.write
.Default Implementation
Declaration
Swift
@inlinable func wrapOutboundOut(_ value: OutboundOut) -> NIOAny