Uses of Interface
org.infinispan.remoting.responses.Response
Packages that use Response
Package
Description
Remote communication between cache instances.
Abstractions of the different response types allowed during RPC.
Remote Procedure Call (RPC) interfaces and components used to invoke remote methods on cache instances.
Transports handle the low-level networking, used by the remoting components.
A transport implementation based on JGroups.
-
Uses of Response in org.infinispan.remoting
Methods in org.infinispan.remoting that return ResponseMethods in org.infinispan.remoting that return types with arguments of type Response -
Uses of Response in org.infinispan.remoting.responses
Classes in org.infinispan.remoting.responses that implement ResponseModifier and TypeClassDescriptionclass
class
A response that signals the named cache is not running on the target node.class
A response that encapsulates an exceptionclass
An invalid responseclass
AValidResponse
used by Optimistic Transactions.class
A successful responseclass
An unsuccessful responseclass
An unsure response - used with Dist - essentially asks the caller to check the next response from the next node since the sender is in a state of flux (probably in the middle of rebalancing)class
A valid responseMethods in org.infinispan.remoting.responses that return ResponseModifier and TypeMethodDescriptionDefaultResponseGenerator.getResponse
(org.infinispan.commands.remote.CacheRpcCommand command, Object returnValue) ResponseGenerator.getResponse
(org.infinispan.commands.remote.CacheRpcCommand command, Object returnValue) Methods in org.infinispan.remoting.responses with parameters of type ResponseModifier and TypeMethodDescriptionboolean
ClusteredGetResponseValidityFilter.isAcceptable
(Response response, Address address) boolean
IgnoreExtraResponsesValidityFilter.isAcceptable
(Response response, Address address) -
Uses of Response in org.infinispan.remoting.rpc
Methods in org.infinispan.remoting.rpc that return types with arguments of type ResponseModifier and TypeMethodDescriptiondefault CompletableFuture
<Map<Address, Response>> RpcManager.invokeRemotelyAsync
(Collection<Address> recipients, ReplicableCommand rpc, RpcOptions options) Deprecated, for removal: This API element is subject to removal in a future version.RpcManagerImpl.invokeRemotelyAsync
(Collection<Address> recipients, ReplicableCommand rpc, RpcOptions options) Methods in org.infinispan.remoting.rpc with parameters of type ResponseModifier and TypeMethodDescriptionboolean
ResponseFilter.isAcceptable
(Response response, Address sender) Determines whether a response from a given sender should be added to the response list of the request -
Uses of Response in org.infinispan.remoting.transport
Methods in org.infinispan.remoting.transport that return types with arguments of type ResponseModifier and TypeMethodDescriptionAbstractDelegatingTransport.invokeRemotely
(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.AbstractDelegatingTransport.invokeRemotely
(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.Transport.invokeRemotely
(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.Transport.invokeRemotely
(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.Since 9.2, please useTransport.invokeRemotelyAsync(Collection, ReplicableCommand, ResponseMode, long, ResponseFilter, DeliverOrder, boolean)
instead.AbstractDelegatingTransport.invokeRemotelyAsync
(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Transport.invokeRemotelyAsync
(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Methods in org.infinispan.remoting.transport with parameters of type ResponseModifier and TypeMethodDescriptionResponseCollector.addResponse
(Address sender, Response response) Called when a response is received, or when a target node becomes unavailable.final T
ValidResponseCollector.addResponse
(Address sender, Response response) final T
ValidSingleResponseCollector.addResponse
(Address sender, Response response) -
Uses of Response in org.infinispan.remoting.transport.impl
Fields in org.infinispan.remoting.transport.impl with type parameters of type ResponseMethods in org.infinispan.remoting.transport.impl that return ResponseModifier and TypeMethodDescriptionPassthroughSingleResponseCollector.addResponse
(Address sender, Response response) PassthroughSingleResponseCollector.finish()
Methods in org.infinispan.remoting.transport.impl that return types with arguments of type ResponseModifier and TypeMethodDescriptionFilterMapResponseCollector.addException
(Address sender, Exception exception) MapResponseCollector.addException
(Address sender, Exception exception) PassthroughMapResponseCollector.addResponse
(Address sender, Response response) FilterMapResponseCollector.addTargetNotFound
(Address sender) FilterMapResponseCollector.addValidResponse
(Address sender, ValidResponse response) MapResponseCollector.addValidResponse
(Address sender, ValidResponse response) FilterMapResponseCollector.finish()
MapResponseCollector.finish()
PassthroughMapResponseCollector.finish()
SingletonMapResponseCollector.targetNotFound
(Address sender) SingletonMapResponseCollector.withValidResponse
(Address sender, ValidResponse response) Methods in org.infinispan.remoting.transport.impl with parameters of type ResponseModifier and TypeMethodDescriptionPassthroughMapResponseCollector.addResponse
(Address sender, Response response) PassthroughSingleResponseCollector.addResponse
(Address sender, Response response) void
RequestRepository.addResponse
(long requestId, Address sender, Response response) void
MultiTargetRequest.onResponse
(Address sender, Response response) void
Request.onResponse
(Address sender, Response response) Called when a response is received for this response.void
SingleTargetRequest.onResponse
(Address sender, Response response) -
Uses of Response in org.infinispan.remoting.transport.jgroups
Methods in org.infinispan.remoting.transport.jgroups that return types with arguments of type ResponseModifier and TypeMethodDescriptionJGroupsTransport.invokeRemotely
(Map<Address, ReplicableCommand> commands, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.JGroupsTransport.invokeRemotelyAsync
(Collection<Address> recipients, ReplicableCommand command, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Methods in org.infinispan.remoting.transport.jgroups with parameters of type ResponseModifier and TypeMethodDescriptionvoid
SingleSiteRequest.onResponse
(Address sender, Response response) void
StaggeredRequest.onResponse
(Address sender, Response response) -
Uses of Response in org.infinispan.transaction.impl
Methods in org.infinispan.transaction.impl with parameters of type ResponseModifier and TypeMethodDescriptionstatic void
WriteSkewHelper.mergePrepareResponses
(Response r, PrepareResponse aggregateResponse) -
Uses of Response in org.infinispan.xsite.response
Classes in org.infinispan.xsite.response that implement ResponseModifier and TypeClassDescriptionclass
AResponse
implementation for commandXSiteAutoTransferStatusCommand
.Methods in org.infinispan.xsite.response with parameters of type ResponseModifier and TypeMethodDescriptionAutoStateTransferResponseCollector.addResponse
(Address sender, Response response)
RpcManager.sendToMany(Collection, ReplicableCommand, DeliverOrder)
orRpcManager.invokeCommand(Collection, ReplicableCommand, ResponseCollector, RpcOptions)
instead.