Required Associated Typeswift-nio 2.81.0NIOCore
InboundOut
The type of the inbound data which will be forwarded to the next ChannelInboundHandler
in the ChannelPipeline
.
associatedtype InboundOut = Never
The type of the inbound data which will be forwarded to the next ChannelInboundHandler
in the ChannelPipeline
.
associatedtype InboundOut = Never
import NIOCore
The core abstractions that make up SwiftNIO.
protocol ChannelInboundHandler : _ChannelInboundHandler, _EmittingChannelHandler
ChannelHandler
which handles inbound I/O events for a Channel
.
@frozen enum Never
A type that has no values and can’t be constructed.
associatedtype InboundIn
The type of the inbound data which is wrapped in NIOAny
.
func unwrapInboundIn(_ value: NIOAny) -> InboundIn
Unwrap the provided NIOAny
that was passed to channelRead
.
func wrapInboundOut(_ value: InboundOut) -> NIOAny
Wrap the provided InboundOut
that will be passed to the next ChannelInboundHandler
by calling ChannelHandlerContext.fireChannelRead
.