Type Aliasswift-nio 2.72.0NIOCore
InboundOut
Codec.swift:390typealias InboundOut = Decoder.InboundOut
Other members in extension
Typealiases
Type members
init(Decoder
) init(Decoder, maximumBufferSize: Int?
) Initialize a
ByteToMessageHandler
.
typealias InboundOut = Decoder.InboundOut
init(Decoder)
init(Decoder, maximumBufferSize: Int?)
Initialize a ByteToMessageHandler
.
import NIOCore
The core abstractions that make up SwiftNIO.
final class ByteToMessageHandler<Decoder> where Decoder : ByteToMessageDecoder
A handler which turns a given ByteToMessageDecoder
into a ChannelInboundHandler
that can then be added to a ChannelPipeline
.
associatedtype InboundOut
The type of the messages this ByteToMessageDecoder
decodes to.
convenience init(_ decoder: Decoder)
init(_ decoder: Decoder, maximumBufferSize: Int? = nil)
Initialize a ByteToMessageHandler
.
typealias InboundIn = ByteBuffer