Uses of Interface
org.elasticsearch.transport.Transport.Connection
-
Packages that use Transport.Connection Package Description org.elasticsearch.action.search org.elasticsearch.discovery.zen org.elasticsearch.transport -
-
Uses of Transport.Connection in org.elasticsearch.action.search
Methods in org.elasticsearch.action.search that return types with arguments of type Transport.Connection Modifier and Type Method Description static BiFunction<Transport.Connection,org.elasticsearch.action.search.SearchActionListener,ActionListener>SearchExecutionStatsCollector. makeWrapper(ResponseCollectorService service)Methods in org.elasticsearch.action.search with parameters of type Transport.Connection Modifier and Type Method Description voidSearchTransportService. sendCanMatch(Transport.Connection connection, ShardSearchRequest request, SearchTask task, ActionListener<SearchService.CanMatchResponse> listener)voidSearchTransportService. sendClearAllScrollContexts(Transport.Connection connection, ActionListener<TransportResponse> listener)voidSearchTransportService. sendExecuteDfs(Transport.Connection connection, ShardSearchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<DfsSearchResult> listener)voidSearchTransportService. sendExecuteFetch(Transport.Connection connection, ShardFetchSearchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<FetchSearchResult> listener)voidSearchTransportService. sendExecuteFetchScroll(Transport.Connection connection, ShardFetchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<FetchSearchResult> listener)voidSearchTransportService. sendExecuteQuery(Transport.Connection connection, ShardSearchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<SearchPhaseResult> listener)voidSearchTransportService. sendExecuteQuery(Transport.Connection connection, QuerySearchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<QuerySearchResult> listener)voidSearchTransportService. sendExecuteScrollFetch(Transport.Connection connection, InternalScrollSearchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<ScrollQueryFetchSearchResult> listener)voidSearchTransportService. sendExecuteScrollQuery(Transport.Connection connection, InternalScrollSearchRequest request, SearchTask task, org.elasticsearch.action.search.SearchActionListener<ScrollQuerySearchResult> listener)voidSearchTransportService. sendFreeContext(Transport.Connection connection, long contextId, ActionListener<SearchTransportService.SearchFreeContextResponse> listener)voidSearchTransportService. sendFreeContext(Transport.Connection connection, long contextId, OriginalIndices originalIndices)Constructor parameters in org.elasticsearch.action.search with type arguments of type Transport.Connection Constructor Description SearchTransportService(TransportService transportService, BiFunction<Transport.Connection,org.elasticsearch.action.search.SearchActionListener,ActionListener> responseWrapper) -
Uses of Transport.Connection in org.elasticsearch.discovery.zen
Methods in org.elasticsearch.discovery.zen that return Transport.Connection Modifier and Type Method Description Transport.ConnectionUnicastZenPing.PingingRound. getOrConnect(DiscoveryNode node) -
Uses of Transport.Connection in org.elasticsearch.transport
Classes in org.elasticsearch.transport that implement Transport.Connection Modifier and Type Class Description classCloseableConnectionAbstract Transport.Connection that provides common close logic.classTcpTransport.NodeChannelsMethods in org.elasticsearch.transport that return Transport.Connection Modifier and Type Method Description Transport.ConnectionTransport.ResponseContext. connection()Transport.ConnectionRemoteConnectionManager. getAnyRemoteConnection()Transport.ConnectionConnectionManager. getConnection(DiscoveryNode node)Returns a connection for the given node if the node is connected.Transport.ConnectionRemoteClusterService. getConnection(String cluster)Transport.ConnectionRemoteClusterService. getConnection(DiscoveryNode node, String cluster)Returns a connection to the given node on the given remote clusterTransport.ConnectionTransportService. getConnection(DiscoveryNode node)Returns either a real transport connection or a local node connection if we are using the local node optimization.Transport.ConnectionRemoteConnectionManager. getRemoteConnection(DiscoveryNode node)Transport.ConnectionTransportService. openConnection(DiscoveryNode node, ConnectionProfile connectionProfile)Establishes and returns a new connection to the given node.Methods in org.elasticsearch.transport with parameters of type Transport.Connection Modifier and Type Method Description voidTransportService. handshake(Transport.Connection connection, long handshakeTimeout, Predicate<ClusterName> clusterNamePredicate, ActionListener<TransportService.HandshakeResponse> listener)Executes a high-level handshake using the given connection and returns the discovery node of the node the connection was established with.voidTransportService. handshake(Transport.Connection connection, long handshakeTimeout, ActionListener<DiscoveryNode> listener)Executes a high-level handshake using the given connection and returns the discovery node of the node the connection was established with.default voidTransportConnectionListener. onConnectionClosed(Transport.Connection connection)Called once a connection ws closed.voidTransportService. onConnectionClosed(Transport.Connection connection)default voidTransportConnectionListener. onConnectionOpened(Transport.Connection connection)Called once a connection was openeddefault voidTransportConnectionListener. onNodeConnected(DiscoveryNode node, Transport.Connection connection)Called once a node connection is opened and registered.default voidTransportConnectionListener. onNodeDisconnected(DiscoveryNode node, Transport.Connection connection)Called once a node connection is closed and unregistered.<T extends TransportResponse>
voidTransportService. sendChildRequest(Transport.Connection connection, String action, TransportRequest request, Task parentTask, TransportRequestOptions options, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidTransportService. sendChildRequest(Transport.Connection connection, String action, TransportRequest request, Task parentTask, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidTransportInterceptor.AsyncSender. sendRequest(Transport.Connection connection, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidTransportService. sendRequest(Transport.Connection connection, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler)voidConnectionManager.ConnectionValidator. validate(Transport.Connection connection, ConnectionProfile profile, ActionListener<Void> listener)Method parameters in org.elasticsearch.transport with type arguments of type Transport.Connection Modifier and Type Method Description voidConnectionManager. openConnection(DiscoveryNode node, ConnectionProfile connectionProfile, ActionListener<Transport.Connection> listener)voidRemoteConnectionManager. openConnection(DiscoveryNode node, ConnectionProfile profile, ActionListener<Transport.Connection> listener)voidTcpTransport. openConnection(DiscoveryNode node, ConnectionProfile profile, ActionListener<Transport.Connection> listener)voidTransport. openConnection(DiscoveryNode node, ConnectionProfile profile, ActionListener<Transport.Connection> listener)Opens a new connection to the given node.voidTransportService. openConnection(DiscoveryNode node, ConnectionProfile connectionProfile, ActionListener<Transport.Connection> listener)Establishes a new connection to the given node.
-