Instance Methodswift-nio 2.72.0NIOCore
channelWritabilityChanged(context:)
ChannelHandlers.swift:131func channelWritabilityChanged(context: ChannelHandlerContext)
func channelWritabilityChanged(context: ChannelHandlerContext)
s7NIOCore19BackPressureHandlerC25channelWritabilityChanged7contextyAA07ChannelD7ContextC_tF
What are these?
FNV24: [6FKZP]
import NIOCore
The core abstractions that make up SwiftNIO.
final class BackPressureHandler
ChannelHandler implementation which enforces back-pressure by stopping to read from the remote peer when it cannot write back fast enough. It will start reading again once pending data was written.
final class ChannelHandlerContext
Every ChannelHandler
has – when added to a ChannelPipeline
– a corresponding ChannelHandlerContext
which is the way ChannelHandler
s can interact with other ChannelHandler
s in the pipeline.
init()
func handlerRemoved(context: ChannelHandlerContext)
func read(context: ChannelHandlerContext)
typealias InboundIn = ByteBuffer
typealias InboundOut = ByteBuffer
typealias OutboundIn = NIOAny
typealias OutboundOut = ByteBuffer