Instance Method (Default implementation)swift-nio 2.72.0NIOCore
channelWritabilityChanged(context:)
ChannelHandler.swift:299func channelWritabilityChanged(context: ChannelHandlerContext)
Implements
func channelWritabilityChanged(context: ChannelHandlerContext
) The writability state of the
Channel
has changed, either because it has buffered more data than the writability high water mark, or because the amount of buffered data has dropped below the writability low water mark. You can check the state withChannel.isWritable
.
Other members in extension
Instance members
func channelActive(context: ChannelHandlerContext
) func channelInactive(context: ChannelHandlerContext
) func channelRead(context: ChannelHandlerContext, data: NIOAny
) func channelReadComplete(context: ChannelHandlerContext
) func channelRegistered(context: ChannelHandlerContext
) func channelUnregistered(context: ChannelHandlerContext
) func errorCaught(context: ChannelHandlerContext, error: Error
) func userInboundEventTriggered(context: ChannelHandlerContext, event: Any
)