Required Associated Typeswift-nio 2.72.0NIOCore
InboundOut
The type of the inbound data which will be forwarded to the next ChannelInboundHandler
in the ChannelPipeline
.
associatedtype InboundOut = Never
Other requirements
Type members
associatedtype InboundIn
The type of the inbound data which is wrapped in
NIOAny
.
Instance members
func unwrapInboundIn(NIOAny
) -> InboundIn Unwrap the provided
NIOAny
that was passed tochannelRead
.func wrapInboundOut(InboundOut
) -> NIOAny Wrap the provided
InboundOut
that will be passed to the nextChannelInboundHandler
by callingChannelHandlerContext.fireChannelRead
.