Uses of Interface
com.loomcache.common.protocol.SerializablePredicate
Packages that use SerializablePredicate
Package
Description
Client-side query utilities — local filtered views over distributed maps
(client proxy for the server-side
ContinuousQueryCache).-
Uses of SerializablePredicate in com.loomcache.client
Methods in com.loomcache.client with parameters of type SerializablePredicateModifier and TypeMethodDescriptionvoidLoomClient.registerCqcListener(String mapName, LoomClient.MapChangeListener listener, SerializablePredicate predicate) Register a CQC-filtered event listener for the given map. -
Uses of SerializablePredicate in com.loomcache.client.query
Methods in com.loomcache.client.query with parameters of type SerializablePredicateModifier and TypeMethodDescriptionstatic <K,V> LoomQueryCache <K, V> LoomQueryCache.createServerFiltered(LoomClient client, String sourceMapName, SerializablePredicate serverPredicate, Class<K> keyType, Class<V> valueType) Create a client-side continuous query cache with server-side predicate evaluation. -
Uses of SerializablePredicate in com.loomcache.common.protocol
Classes in com.loomcache.common.protocol that implement SerializablePredicateModifier and TypeClassDescriptionstatic final classMatches every entry.static final recordMatches entries whose key equals the operand.static final recordMatches entries whose key starts with the operand.static final recordMatches entries whose value contains the operand as a substring.static final recordMatches entries whose value equals the operand.Methods in com.loomcache.common.protocol that return SerializablePredicateModifier and TypeMethodDescriptionstatic SerializablePredicateSerializablePredicate.all()Match every entry.static SerializablePredicateSerializablePredicate.decode(byte[] bytes) Decode a predicate from wire bytes produced bySerializablePredicate.encode().static SerializablePredicateMatch entries whose key equalsvalue.static SerializablePredicateSerializablePredicate.keyStartsWith(String prefix) Match entries whose key starts withprefix.static SerializablePredicateSerializablePredicate.valueContains(String substring) Match entries whose value containssubstring.static SerializablePredicateSerializablePredicate.valueEquals(String value) Match entries whose value equalsvalue. -
Uses of SerializablePredicate in com.loomcache.server.handler
Methods in com.loomcache.server.handler that return SerializablePredicateModifier and TypeMethodDescriptionCqcSubscriptionHandler.CqcSubscription.predicate()Returns the value of thepredicaterecord component.Constructors in com.loomcache.server.handler with parameters of type SerializablePredicateModifierConstructorDescriptionCqcSubscription(CqcSubscriptionHandler.SubscriptionId id, SerializablePredicate predicate, DistributedMap.MapChangeListener<String, String> listener, DistributedMap<String, String> sourceMap) Creates an instance of aCqcSubscriptionrecord class.