Protocolswift-nio 2.72.0NIOCore
_EmittingChannelHandler
ChannelHandler which will emit data by calling ChannelHandlerContext.write
.
protocol _EmittingChannelHandler
We strongly advice against implementing this protocol directly. Please implement ChannelInboundHandler
or / and ChannelOutboundHandler
.
Requirements
Type members
associatedtype OutboundOut
The type of the outbound data which will be forwarded to the next
ChannelOutboundHandler
in theChannelPipeline
.
Instance members
func wrapOutboundOut(OutboundOut
) -> NIOAny Wrap the provided
OutboundOut
that will be passed to the nextChannelOutboundHandler
by callingChannelHandlerContext.write
.
Citizens in NIOCore
Type members
Instance members
Subtypes
protocol ChannelInboundHandler
ChannelHandler
which handles inbound I/O events for aChannel
.protocol ChannelOutboundHandler
ChannelHandler
which handles outbound I/O events or intercept an outbound I/O operation for aChannel
.