Uses of Interface
com.loomcache.server.executor.MemberSelector
Packages that use MemberSelector
-
Uses of MemberSelector in com.loomcache.server.executor
Methods in com.loomcache.server.executor that return MemberSelectorModifier and TypeMethodDescriptionstatic MemberSelectorMemberSelector.alive()Select members that are currently alive.static MemberSelectorMemberSelector.all()Select every candidate member.default MemberSelectorMemberSelector.and(MemberSelector other) Combine this selector with another selector using logical AND.static MemberSelectorSelect members whose attribute exactly matches the expected value.static MemberSelectorMemberSelector.hasAttribute(String name) Select members that have the named attribute, regardless of value.default MemberSelectorMemberSelector.negate()Invert this selector.default MemberSelectorMemberSelector.or(MemberSelector other) Combine this selector with another selector using logical OR.Methods in com.loomcache.server.executor with parameters of type MemberSelectorModifier and TypeMethodDescriptiondefault MemberSelectorMemberSelector.and(MemberSelector other) Combine this selector with another selector using logical AND.default MemberSelectorMemberSelector.or(MemberSelector other) Combine this selector with another selector using logical OR.DistributedExecutorService.submit(Callable<V> task, MemberSelector memberSelector) Submit a callable task to members selected from the configured membership snapshot.DistributedExecutorService.submitToMembers(Callable<V> task, Iterable<NodeInfo> members, MemberSelector memberSelector) Submit a callable task to members selected from an explicit membership snapshot.