Protocolswift-nio 2.72.0NIOCore
ChannelInvoker
A protocol that signals that outbound and inbound events are triggered by this invoker.
ChannelInvoker.swift:245protocol ChannelInvoker : ChannelInboundInvoker, ChannelOutboundInvoker
See also
protocol ChannelCore
The core
Channel
methods that are for internal use of theChannel
implementation only.protocol ChannelInboundInvoker
Fire inbound events related to a
Channel
through theChannelPipeline
until its end is reached or it’s consumed by aChannelHandler
.protocol ChannelOutboundInvoker
Allows users to invoke an “outbound” operation related to a
Channel
that will flow through theChannelPipeline
until it will finally be executed by the theChannelCore
implementation.