Package | Description |
---|---|
org.xnio |
The main API package for XNIO.
|
org.xnio.channels |
The core XNIO channel API.
|
Modifier and Type | Method and Description |
---|---|
ChannelPipe<StreamChannel,StreamChannel> |
XnioWorker.createFullDuplexPipe() |
ChannelPipe<StreamChannel,StreamChannel> |
XnioWorker.createFullDuplexPipe() |
ChannelPipe<StreamChannel,StreamChannel> |
XnioIoThread.createFullDuplexPipe() |
ChannelPipe<StreamChannel,StreamChannel> |
XnioIoThread.createFullDuplexPipe() |
ChannelPipe<StreamChannel,StreamChannel> |
XnioIoFactory.createFullDuplexPipe()
Create a two-way stream pipe.
|
ChannelPipe<StreamChannel,StreamChannel> |
XnioIoFactory.createFullDuplexPipe()
Create a two-way stream pipe.
|
Modifier and Type | Method and Description |
---|---|
void |
XnioWorker.createPipe(ChannelListener<? super StreamChannel> leftOpenListener,
ChannelListener<? super StreamChannel> rightOpenListener,
OptionMap optionMap)
Deprecated.
Users should prefer the simpler
XnioWorker.createFullDuplexPipe() instead. |
void |
XnioWorker.createPipe(ChannelListener<? super StreamChannel> leftOpenListener,
ChannelListener<? super StreamChannel> rightOpenListener,
OptionMap optionMap)
Deprecated.
Users should prefer the simpler
XnioWorker.createFullDuplexPipe() instead. |
Modifier and Type | Interface and Description |
---|---|
interface |
ConnectedSslStreamChannel
A TLS-encapsulated connected stream channel.
|
interface |
ConnectedStreamChannel
A stream channel that is a connection between a local and remote endpoint.
|
Modifier and Type | Class and Description |
---|---|
class |
AssembledConnectedSslStreamChannel
A connected SSL stream channel assembled from a stream source and stream sink.
|
class |
AssembledConnectedStreamChannel
A connected stream channel assembled from a stream source and stream sink.
|
class |
AssembledStreamChannel
A stream channel assembled from a stream source and stream sink.
|
Modifier and Type | Method and Description |
---|---|
ChannelListener.Setter<? extends StreamChannel> |
StreamChannel.getCloseSetter()
Get the setter which can be used to change the close listener for this channel.
|
ChannelListener.Setter<? extends StreamChannel> |
StreamChannel.getReadSetter()
Get the setter which can be used to change the read listener for this channel.
|
ChannelListener.Setter<? extends StreamChannel> |
StreamChannel.getWriteSetter()
Get the setter which can be used to change the write listener for this channel.
|
Constructor and Description |
---|
BlockingByteChannel(StreamChannel delegate)
Construct a new instance.
|
BlockingByteChannel(StreamChannel delegate,
long timeout,
TimeUnit timeoutUnit)
Construct a new instance.
|
BlockingByteChannel(StreamChannel delegate,
long readTimeout,
TimeUnit readTimeoutUnit,
long writeTimeout,
TimeUnit writeTimeoutUnit)
Construct a new instance.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.