Type Aliasswift-nio 2.81.0NIOCore
InboundIn
ChannelHandlers.swift:137typealias InboundIn = ByteBuffer
typealias InboundIn = 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 InboundOut = ByteBuffer
typealias OutboundIn = NIOAny
typealias OutboundOut = ByteBuffer