Type Aliasswift-nio 2.81.0NIOCore
OutboundOut
ChannelHandlers.swift:139typealias OutboundOut = ByteBuffer
typealias OutboundOut = ByteBuffer
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.
struct ByteBuffer
ByteBuffer
stores contiguously allocated raw bytes. It is a random and sequential accessible sequence of zero or more bytes (octets).
init()
func channelWritabilityChanged(context: ChannelHandlerContext)
func handlerRemoved(context: ChannelHandlerContext)
func read(context: ChannelHandlerContext)
typealias InboundIn = ByteBuffer
typealias InboundOut = ByteBuffer
typealias OutboundIn = NIOAny