Package org.elasticsearch.transport
Interface Transport.Connection
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
- All Known Implementing Classes:
CloseableConnection,TcpTransport.NodeChannels
- Enclosing interface:
- Transport
public static interface Transport.Connection
extends java.io.Closeable
A unidirectional connection to a
DiscoveryNode-
Method Summary
Modifier and Type Method Description voidaddCloseListener(ActionListener<java.lang.Void> listener)The listener'sActionListener.onResponse(Object)method will be called when this connection is closed.voidclose()default java.lang.ObjectgetCacheKey()Returns a key that this connection can be cached on.DiscoveryNodegetNode()The node this connection is associated withdefault VersiongetVersion()Returns the version of the node this connection was established with.booleanisClosed()voidsendRequest(long requestId, java.lang.String action, TransportRequest request, TransportRequestOptions options)Sends the request to the node this connection is associated with
-
Method Details
-
getNode
DiscoveryNode getNode()The node this connection is associated with -
sendRequest
void sendRequest(long requestId, java.lang.String action, TransportRequest request, TransportRequestOptions options) throws java.io.IOException, TransportExceptionSends the request to the node this connection is associated with- Parameters:
requestId- seeTransport.ResponseHandlers.add(ResponseContext)for detailsaction- the action to executerequest- the request to sendoptions- request options to apply- Throws:
NodeNotConnectedException- if the given node is not connectedjava.io.IOExceptionTransportException
-
addCloseListener
The listener'sActionListener.onResponse(Object)method will be called when this connection is closed. No implementations currently throw an exception during close, soActionListener.onFailure(Exception)will not be called.- Parameters:
listener- to be called
-
isClosed
boolean isClosed() -
getVersion
Returns the version of the node this connection was established with. -
getCacheKey
default java.lang.Object getCacheKey()Returns a key that this connection can be cached on. Delegating subclasses must delegate method call to the original connection. -
close
void close()- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable
-