Uses of Class
org.infinispan.remoting.inboundhandler.DeliverOrder
-
Packages that use DeliverOrder Package Description org.infinispan.remoting.inboundhandler Handling of inbound commands on remote nodes.org.infinispan.remoting.rpc Remote Procedure Call (RPC) interfaces and components used to invoke remote methods on cache instances.org.infinispan.remoting.transport Transports handle the low-level networking, used by the remoting components.org.infinispan.remoting.transport.jgroups A transport implementation based on JGroups.org.infinispan.stats.wrappers -
-
Uses of DeliverOrder in org.infinispan.remoting.inboundhandler
Methods in org.infinispan.remoting.inboundhandler that return DeliverOrder Modifier and Type Method Description static DeliverOrderDeliverOrder. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DeliverOrder[]DeliverOrder. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.infinispan.remoting.inboundhandler with parameters of type DeliverOrder Modifier and Type Method Description protected voidAbstractDelegatingHandler. afterHandle(org.infinispan.commands.remote.CacheRpcCommand command, DeliverOrder order, boolean delegated)Invoked after the command is handled.protected booleanAbstractDelegatingHandler. beforeHandle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)Invoked before the command is handled by the realPerCacheInboundInvocationHandler.voidAbstractDelegatingHandler. handle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)voidNonTotalOrderPerCacheInboundInvocationHandler. handle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)voidNonTotalOrderTxPerCacheInboundInvocationHandler. handle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)voidPerCacheInboundInvocationHandler. handle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)Handles theCacheRpcCommandfrom other node.voidTotalOrderTxPerCacheInboundInvocationHandler. handle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)Deprecated.voidTrianglePerCacheInboundInvocationHandler. handle(org.infinispan.commands.remote.CacheRpcCommand command, Reply reply, DeliverOrder order)voidGlobalInboundInvocationHandler. handleFromCluster(Address origin, org.infinispan.commands.ReplicableCommand command, Reply reply, DeliverOrder order)voidInboundInvocationHandler. handleFromCluster(Address origin, org.infinispan.commands.ReplicableCommand command, Reply reply, DeliverOrder order)Handles theReplicableCommandfrom other node belonging to local site.voidGlobalInboundInvocationHandler. handleFromRemoteSite(java.lang.String origin, XSiteReplicateCommand command, Reply reply, DeliverOrder order)voidInboundInvocationHandler. handleFromRemoteSite(java.lang.String origin, XSiteReplicateCommand command, Reply reply, DeliverOrder order)Handles theReplicableCommandfrom remote site. -
Uses of DeliverOrder in org.infinispan.remoting.rpc
Methods in org.infinispan.remoting.rpc that return DeliverOrder Modifier and Type Method Description DeliverOrderRpcOptions. deliverOrder()Methods in org.infinispan.remoting.rpc with parameters of type DeliverOrder Modifier and Type Method Description RpcOptionsBuilderRpcOptionsBuilder. deliverMode(DeliverOrder deliverOrder)Deprecated.RpcOptionsRpcManager. getDefaultRpcOptions(boolean sync, DeliverOrder deliverOrder)Deprecated.Since 9.2, please useRpcManager.getSyncRpcOptions()orRpcManager.getTotalSyncRpcOptions()instead.RpcOptionsRpcManagerImpl. getDefaultRpcOptions(boolean sync, DeliverOrder deliverOrder)RpcOptionsBuilderRpcManager. getRpcOptionsBuilder(ResponseMode responseMode, DeliverOrder deliverOrder)Deprecated.Since 9.2, please useRpcManager.getSyncRpcOptions()instead.RpcOptionsBuilderRpcManagerImpl. getRpcOptionsBuilder(ResponseMode responseMode, DeliverOrder deliverOrder)voidRpcManager. sendTo(Address destination, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the destination using the specifiedDeliverOrder.voidRpcManagerImpl. sendTo(Address destination, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)voidRpcManager. sendToAll(org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the entire cluster.voidRpcManagerImpl. sendToAll(org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)voidRpcManager. sendToMany(java.util.Collection<Address> destinations, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the set of destination using the specifiedDeliverOrder.voidRpcManagerImpl. sendToMany(java.util.Collection<Address> destinations, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)Constructors in org.infinispan.remoting.rpc with parameters of type DeliverOrder Constructor Description RpcOptions(long timeout, java.util.concurrent.TimeUnit unit, ResponseFilter responseFilter, ResponseMode responseMode, boolean skipReplicationQueue, DeliverOrder deliverOrder)Deprecated.Since 9.0, useRpcOptions(long, TimeUnit, ResponseFilter, ResponseMode, DeliverOrder)instead.RpcOptions(long timeout, java.util.concurrent.TimeUnit unit, ResponseFilter responseFilter, ResponseMode responseMode, DeliverOrder deliverOrder)Deprecated.Since 9.2, useRpcOptions(DeliverOrder, long, TimeUnit)instead.RpcOptions(DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)RpcOptionsBuilder(long timeout, java.util.concurrent.TimeUnit unit, ResponseMode responseMode, DeliverOrder deliverOrder)Deprecated. -
Uses of DeliverOrder in org.infinispan.remoting.transport
Methods in org.infinispan.remoting.transport with parameters of type DeliverOrder Modifier and Type Method Description <T> java.util.concurrent.CompletionStage<T>AbstractDelegatingTransport. invokeCommand(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)<T> java.util.concurrent.CompletionStage<T>AbstractDelegatingTransport. invokeCommand(Address target, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommand(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)Invoke a command on a collection of node and pass the responses to aResponseCollector.default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommand(Address target, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)Invoke a command on a single node and pass the response to aResponseCollector.<T> java.util.concurrent.CompletionStage<T>AbstractDelegatingTransport. invokeCommandOnAll(org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommandOnAll(java.util.Collection<Address> requiredTargets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)Invoke a command on all the nodes in the cluster and pass the responses to aResponseCollector.default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommandOnAll(org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)Invoke a command on all the nodes in the cluster and pass the responses to aResponseCollector.<T> java.util.concurrent.CompletionStage<T>AbstractDelegatingTransport. invokeCommands(java.util.Collection<Address> targets, java.util.function.Function<Address,org.infinispan.commands.ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit timeUnit)default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommands(java.util.Collection<Address> targets, java.util.function.Function<Address,org.infinispan.commands.ReplicableCommand> commandGenerator, ResponseCollector<T> responseCollector, long timeout, DeliverOrder deliverOrder)Deprecated.Introduced in 9.1, but replaced in 9.2 withTransport.invokeCommands(Collection, Function, ResponseCollector, DeliverOrder, long, TimeUnit).default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommands(java.util.Collection<Address> targets, java.util.function.Function<Address,org.infinispan.commands.ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit timeUnit)Invoke different commands on a collection of nodes and pass the responses to aResponseCollector.<T> java.util.concurrent.CompletionStage<T>AbstractDelegatingTransport. invokeCommandStaggered(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)default <T> java.util.concurrent.CompletionStage<T>Transport. invokeCommandStaggered(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)Invoke a command on a collection of nodes and pass the responses to aResponseCollector.java.util.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(java.util.Collection<Address> recipients, org.infinispan.commands.ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)java.util.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(java.util.Map<Address,org.infinispan.commands.ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)default java.util.Map<Address,Response>Transport. invokeRemotely(java.util.Collection<Address> recipients, org.infinispan.commands.ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Since 9.2, please useTransport.invokeCommand(Collection, ReplicableCommand, ResponseCollector, DeliverOrder, long, TimeUnit)instead.default java.util.Map<Address,Response>Transport. invokeRemotely(java.util.Map<Address,org.infinispan.commands.ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Since 9.2, please useTransport.invokeRemotelyAsync(Collection, ReplicableCommand, ResponseMode, long, ResponseFilter, DeliverOrder, boolean)instead.java.util.concurrent.CompletableFuture<java.util.Map<Address,Response>>AbstractDelegatingTransport. invokeRemotelyAsync(java.util.Collection<Address> recipients, org.infinispan.commands.ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)java.util.concurrent.CompletableFuture<java.util.Map<Address,Response>>Transport. invokeRemotelyAsync(java.util.Collection<Address> recipients, org.infinispan.commands.ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)voidAbstractDelegatingTransport. sendTo(Address destination, org.infinispan.commands.ReplicableCommand rpcCommand, DeliverOrder deliverOrder)voidTransport. sendTo(Address destination, org.infinispan.commands.ReplicableCommand rpcCommand, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the destination using the specifiedDeliverOrder.voidAbstractDelegatingTransport. sendToAll(org.infinispan.commands.ReplicableCommand rpcCommand, DeliverOrder deliverOrder)default voidTransport. sendToAll(org.infinispan.commands.ReplicableCommand rpcCommand, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the entire cluster.voidAbstractDelegatingTransport. sendToMany(java.util.Collection<Address> destinations, org.infinispan.commands.ReplicableCommand rpcCommand, DeliverOrder deliverOrder)voidTransport. sendToMany(java.util.Collection<Address> destinations, org.infinispan.commands.ReplicableCommand rpcCommand, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the set of destination using the specifiedDeliverOrder. -
Uses of DeliverOrder in org.infinispan.remoting.transport.jgroups
Methods in org.infinispan.remoting.transport.jgroups with parameters of type DeliverOrder Modifier and Type Method Description <T> java.util.concurrent.CompletionStage<T>JGroupsTransport. invokeCommand(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)<T> java.util.concurrent.CompletionStage<T>JGroupsTransport. invokeCommand(Address target, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)<T> java.util.concurrent.CompletionStage<T>JGroupsTransport. invokeCommandOnAll(java.util.Collection<Address> requiredTargets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)<T> java.util.concurrent.CompletionStage<T>JGroupsTransport. invokeCommandOnAll(org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)<T> java.util.concurrent.CompletionStage<T>JGroupsTransport. invokeCommands(java.util.Collection<Address> targets, java.util.function.Function<Address,org.infinispan.commands.ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit timeUnit)<T> java.util.concurrent.CompletionStage<T>JGroupsTransport. invokeCommandStaggered(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, java.util.concurrent.TimeUnit unit)java.util.Map<Address,Response>JGroupsTransport. invokeRemotely(java.util.Map<Address,org.infinispan.commands.ReplicableCommand> commands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.java.util.concurrent.CompletableFuture<java.util.Map<Address,Response>>JGroupsTransport. invokeRemotelyAsync(java.util.Collection<Address> recipients, org.infinispan.commands.ReplicableCommand command, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)voidJGroupsTransport. sendTo(Address destination, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)voidJGroupsTransport. sendToAll(org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)voidJGroupsTransport. sendToMany(java.util.Collection<Address> targets, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder) -
Uses of DeliverOrder in org.infinispan.stats.wrappers
Methods in org.infinispan.stats.wrappers with parameters of type DeliverOrder Modifier and Type Method Description RpcOptionsExtendedStatisticRpcManager. getDefaultRpcOptions(boolean sync, DeliverOrder deliverOrder)RpcOptionsBuilderExtendedStatisticRpcManager. getRpcOptionsBuilder(ResponseMode responseMode, DeliverOrder deliverOrder)voidExtendedStatisticRpcManager. sendTo(Address destination, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)voidExtendedStatisticRpcManager. sendToAll(org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)voidExtendedStatisticRpcManager. sendToMany(java.util.Collection<Address> destinations, org.infinispan.commands.ReplicableCommand command, DeliverOrder deliverOrder)
-