Class SingleSiteRequest<T>

java.lang.Object
java.util.concurrent.CompletableFuture<T>
org.infinispan.remoting.transport.AbstractRequest<T>
org.infinispan.remoting.transport.jgroups.SingleSiteRequest<T>
All Implemented Interfaces:
Callable<Void>, CompletionStage<T>, Future<T>, Request<T>

public class SingleSiteRequest<T> extends AbstractRequest<T>
Request implementation that waits for a response from a single target site.
Since:
9.1
Author:
Dan Berindei
  • Method Details

    • onResponse

      public void onResponse(Address sender, Response response)
      Description copied from interface: Request
      Called when a response is received for this response.
    • onNewView

      public boolean onNewView(Set<Address> members)
      Description copied from interface: Request
      Called when the node received a new cluster view.
      Returns:
      true if any of the request targets is not in the view. This value should only be used before the request was actually submitted.
    • onTimeout

      protected void onTimeout()
      Description copied from class: AbstractRequest
      Called when the timeout task scheduled with AbstractRequest.setTimeout(ScheduledExecutorService, long, TimeUnit) expires.
      Specified by:
      onTimeout in class AbstractRequest<T>
    • sitesUnreachable

      public void sitesUnreachable(String unreachableSite)