Uses of Interface
org.elasticsearch.transport.TransportResponseHandler
-
Packages that use TransportResponseHandler Package Description org.elasticsearch.action org.elasticsearch.discovery.zen org.elasticsearch.transport -
-
Uses of TransportResponseHandler in org.elasticsearch.action
Classes in org.elasticsearch.action that implement TransportResponseHandler Modifier and Type Class Description classActionListenerResponseHandler<Response extends TransportResponse>A simple base class for action response listeners, defaulting to using the SAME executor (as its very common on response handlers). -
Uses of TransportResponseHandler in org.elasticsearch.discovery.zen
Methods in org.elasticsearch.discovery.zen that return TransportResponseHandler Modifier and Type Method Description protected TransportResponseHandler<UnicastZenPing.UnicastPingResponse>UnicastZenPing. getPingResponseHandler(UnicastZenPing.PingingRound pingingRound, DiscoveryNode node) -
Uses of TransportResponseHandler in org.elasticsearch.transport
Classes in org.elasticsearch.transport that implement TransportResponseHandler Modifier and Type Class Description classEmptyTransportResponseHandlerclassFutureTransportResponseHandler<T extends TransportResponse>A response handler to be used when all interaction will be done through theTransportFuture.classPlainTransportFuture<V extends TransportResponse>static classTransportService.ContextRestoreResponseHandler<T extends TransportResponse>This handler wrapper ensures that the response thread executes with the correct thread context.Methods in org.elasticsearch.transport that return TransportResponseHandler Modifier and Type Method Description TransportResponseHandler<T>Transport.ResponseContext. handler()TransportResponseHandler<? extends TransportResponse>Transport.ResponseHandlers. onResponseReceived(long requestId, TransportMessageListener listener)called by theTransportimplementation when a response or an exception has been received for a previously sent request (before any processing or deserialization was done).default <Q extends TransportResponse>
TransportResponseHandler<Q>TransportResponseHandler. wrap(Function<Q,T> converter, Writeable.Reader<Q> reader)Constructors in org.elasticsearch.transport with parameters of type TransportResponseHandler Constructor Description ContextRestoreResponseHandler(Supplier<ThreadContext.StoredContext> contextSupplier, TransportResponseHandler<T> delegate)PlainTransportFuture(TransportResponseHandler<V> handler)
-