allowLocalEndpointReuse
Allow immediately reusing a local address.
static let allowLocalEndpointReuse: ChannelOptions.TCPConvenienceOptionAllow immediately reusing a local address.
static let allowLocalEndpointReuse: ChannelOptions.TCPConvenienceOptions7NIOCore14ChannelOptionsV20TCPConvenienceOptionV23allowLocalEndpointReuseAEvpZ What are these?7G6P6import NIOCoreThe core abstractions that make up SwiftNIO.
struct TCPConvenienceOptionA TCP channel option which can be applied to a bootstrap using convenience notation.
struct ChannelOptionsProvides ChannelOptions to be used with a Channel, Bootstrap or ServerBootstrap.
static let allowRemoteHalfClosure: ChannelOptions.TCPConvenienceOptionAllows users to configure whether the Channel will close itself when its remote peer shuts down its send stream, or whether it will remain open. If set to false (the default), the Channel will be closed automatically if the remote peer shuts down its send stream. If set to true, the Channel will not be closed: instead, a ChannelEvent.inboundClosed user event will be sent on the ChannelPipeline, and no more data will be received.
static let disableAutoRead: ChannelOptions.TCPConvenienceOptionThe user will manually call Channel.read once all the data is read from the transport.