Uses of Interface
org.apache.ignite.internal.client.GridClientPredicate
-
Packages that use GridClientPredicate Package Description org.apache.ignite.internal.client org.apache.ignite.internal.client.impl org.apache.ignite.internal.client.util -
-
Uses of GridClientPredicate in org.apache.ignite.internal.client
Methods in org.apache.ignite.internal.client that return GridClientPredicate Modifier and Type Method Description GridClientPredicate<UUID>GridClientPartitionAffinity. getBackupFilter()Gets optional backup filter.Methods in org.apache.ignite.internal.client with parameters of type GridClientPredicate Modifier and Type Method Description Collection<GridClientNode>GridClientCompute. nodes(GridClientPredicate<GridClientNode> filter)Gets all cached nodes that pass the filter.GridClientComputeGridClientCompute. projection(GridClientPredicate<? super GridClientNode> filter)Creates a projection that will communicate only with nodes that are accepted by the passed filter.GridClientComputeGridClientCompute. projection(GridClientPredicate<? super GridClientNode> filter, GridClientLoadBalancer balancer)Creates a projection that will communicate only with nodes that are accepted by the passed filter.GridClientPartitionAffinityGridClientPartitionAffinity. setBackupFilter(GridClientPredicate<UUID> backupFilter)Sets optional backup filter.Constructors in org.apache.ignite.internal.client with parameters of type GridClientPredicate Constructor Description GridClientPartitionAffinity(Integer parts, GridClientPredicate<UUID> backupFilter)Initializes optional counts for replicas and backups. -
Uses of GridClientPredicate in org.apache.ignite.internal.client.impl
Fields in org.apache.ignite.internal.client.impl declared as GridClientPredicate Modifier and Type Field Description protected GridClientPredicate<? super GridClientNode>GridClientAbstractProjection. filterNode filter to be applied for this projection.protected GridClientPredicate<? super GridClientNode>GridClientAbstractProjection. filterNode filter to be applied for this projection.Constructors in org.apache.ignite.internal.client.impl with parameters of type GridClientPredicate Constructor Description GridClientClusterStateImpl(GridClientImpl client, Collection<GridClientNode> nodes, GridClientPredicate<? super GridClientNode> filter, GridClientLoadBalancer balancer)Creates projection with specified client. -
Uses of GridClientPredicate in org.apache.ignite.internal.client.util
Methods in org.apache.ignite.internal.client.util that return GridClientPredicate Modifier and Type Method Description static <T> GridClientPredicate<T>GridClientUtils. contains(Collection<T> c)Creates a predicates that checks if given value is contained in collection c.Methods in org.apache.ignite.internal.client.util with parameters of type GridClientPredicate Modifier and Type Method Description static <T> Collection<T>GridClientUtils. applyFilter(Iterable<? extends T> elements, GridClientPredicate<? super T>... filters)Applies filter and returns filtered collection of nodes.NGridClientConsistentHash. node(Object key, GridClientPredicate<N>... p)Gets node for a given key.
-