Class AddressSetRemoveFunction
java.lang.Object
org.wildfly.clustering.cache.function.AbstractFunction<Collection<org.infinispan.remoting.transport.Address>, Set<org.infinispan.remoting.transport.Address>>
org.wildfly.clustering.cache.function.CollectionFunction<org.infinispan.remoting.transport.Address, Set<org.infinispan.remoting.transport.Address>>
org.wildfly.clustering.cache.function.CollectionRemoveFunction<org.infinispan.remoting.transport.Address, Set<org.infinispan.remoting.transport.Address>>
org.wildfly.clustering.cache.function.SetRemoveFunction<org.infinispan.remoting.transport.Address>
org.wildfly.clustering.server.infinispan.provider.AddressSetRemoveFunction
- All Implemented Interfaces:
BiConsumer<Set<org.infinispan.remoting.transport.Address>, Collection<org.infinispan.remoting.transport.Address>>, BiFunction<Object, Set<org.infinispan.remoting.transport.Address>, Set<org.infinispan.remoting.transport.Address>>, Operation<Collection<org.infinispan.remoting.transport.Address>>
public class AddressSetRemoveFunction
extends SetRemoveFunction<org.infinispan.remoting.transport.Address>
A function used to perform remove/removeAll operations on a set of addresses.
- Author:
- Paul Ferraro
-
Constructor Summary
ConstructorsConstructorDescriptionAddressSetRemoveFunction(Collection<org.infinispan.remoting.transport.Address> addresses) Creates a function that removes the specified addresses from a set.AddressSetRemoveFunction(org.infinispan.remoting.transport.Address address) Creates a function that removes the specified address from a set. -
Method Summary
Methods inherited from class CollectionRemoveFunction
acceptMethods inherited from class CollectionFunction
equals, hashCodeMethods inherited from class AbstractFunction
apply, getOperand, toStringMethods inherited from interface BiConsumer
andThenMethods inherited from interface BiFunction
andThen
-
Constructor Details
-
AddressSetRemoveFunction
public AddressSetRemoveFunction(org.infinispan.remoting.transport.Address address) Creates a function that removes the specified address from a set.- Parameters:
address- a cache container address
-
AddressSetRemoveFunction
Creates a function that removes the specified addresses from a set.- Parameters:
addresses- a cache container address
-