Instance Propertyswift-nio 2.86.1NIOCore
allTimeout
ChannelHandlers.swift:200let allTimeout: TimeAmount?let allTimeout: TimeAmount?s7NIOCore16IdleStateHandlerC10allTimeoutAA10TimeAmountVSgvp What are these?2KBODimport NIOCoreThe core abstractions that make up SwiftNIO.
final class IdleStateHandlerTriggers an IdleStateEvent when a Channel has not performed read, write, or both operation for a while.
struct TimeAmountRepresents a time interval.
init(readTimeout: TimeAmount? = nil, writeTimeout: TimeAmount? = nil, allTimeout: TimeAmount? = nil) let readTimeout: TimeAmount?let writeTimeout: TimeAmount?func channelActive(context: ChannelHandlerContext) func channelRead(context: ChannelHandlerContext, data: NIOAny) func channelReadComplete(context: ChannelHandlerContext) func handlerAdded(context: ChannelHandlerContext) func handlerRemoved(context: ChannelHandlerContext) func write(context: ChannelHandlerContext, data: NIOAny, promise: EventLoopPromise<Void>?) enum IdleStateEventA user event triggered by IdleStateHandler when a Channel is idle.
typealias InboundIn = NIOAnytypealias InboundOut = NIOAnytypealias OutboundIn = NIOAnytypealias OutboundOut = NIOAny