Package org.xnio.channels
Class AssembledConnectedChannel
java.lang.Object
org.xnio.channels.AssembledChannel
org.xnio.channels.AssembledConnectedChannel
- All Implemented Interfaces:
Closeable,AutoCloseable,Channel,InterruptibleChannel,BoundChannel,CloseableChannel,Configurable,ConnectedChannel
- Direct Known Subclasses:
AssembledSslChannel
A closeable, connected view over a read and write side of a suspendable channel, at least one of which is connected.
- Author:
- David M. Lloyd
-
Field Summary
Fields inherited from interface org.xnio.channels.Configurable
EMPTY -
Constructor Summary
ConstructorsConstructorDescriptionAssembledConnectedChannel(SuspendableReadChannel readChannel, SuspendableWriteChannel writeChannel) Construct a new instance. -
Method Summary
Modifier and TypeMethodDescriptionChannelListener.Setter<? extends AssembledConnectedChannel>Get the setter which can be used to change the close listener for this channel.Get the local address that this channel is bound to.<A extends SocketAddress>
AgetLocalAddress(Class<A> type) Get the local address of a given type, ornullif the address is not of that type.Get the peer address of this channel.<A extends SocketAddress>
AgetPeerAddress(Class<A> type) Get the peer address of a given type, ornullif the address is not of that type.Methods inherited from class org.xnio.channels.AssembledChannel
close, getIoThread, getOption, getWorker, isOpen, setOption, supportsOptionMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.xnio.channels.CloseableChannel
close, getIoThread, getWorkerMethods inherited from interface org.xnio.channels.Configurable
getOption, setOption, supportsOption
-
Constructor Details
-
AssembledConnectedChannel
public AssembledConnectedChannel(SuspendableReadChannel readChannel, SuspendableWriteChannel writeChannel) Construct a new instance. At least one of the channels must be an instance ofConnectedChannel.- Parameters:
readChannel- the read channelwriteChannel- the write channel
-
-
Method Details
-
getCloseSetter
Description copied from interface:CloseableChannelGet the setter which can be used to change the close listener for this channel. If the channel is already closed, then the listener will not be called.- Specified by:
getCloseSetterin interfaceBoundChannel- Specified by:
getCloseSetterin interfaceCloseableChannel- Specified by:
getCloseSetterin interfaceConnectedChannel- Overrides:
getCloseSetterin classAssembledChannel- Returns:
- the setter
-
getPeerAddress
Description copied from interface:ConnectedChannelGet the peer address of this channel.- Specified by:
getPeerAddressin interfaceConnectedChannel- Returns:
- the peer address
-
getPeerAddress
Description copied from interface:ConnectedChannelGet the peer address of a given type, ornullif the address is not of that type.- Specified by:
getPeerAddressin interfaceConnectedChannel- Parameters:
type- the address type class- Returns:
- the peer address, or
nullif unknown
-
getLocalAddress
Description copied from interface:BoundChannelGet the local address that this channel is bound to.- Specified by:
getLocalAddressin interfaceBoundChannel- Returns:
- the local address
-
getLocalAddress
Description copied from interface:BoundChannelGet the local address of a given type, ornullif the address is not of that type.- Specified by:
getLocalAddressin interfaceBoundChannel- Type Parameters:
A- the address type- Parameters:
type- the address type class- Returns:
- the local address, or
nullif unknown
-