public interface MemberSelector
Implementations of this interface select members
 that are capable of executing a special kind of task.
 The select(Member) method is called for every available
 member in the cluster and it is up to the implementation to decide
 if the member is going to be used or not.
For example, a basic implementation could select members on the
 existence of a special attribute in the members, like the following
 example:
 
public class MyMemberSelector implements MemberSelector {
     public boolean select(Member member) {
         return Boolean.TRUE.equals(member.getAttribute("my.special.executor"));
     }
 }
 | Modifier and Type | Method and Description | 
|---|---|
| boolean | select(Member member)Decides if the given member will be part of an operation or not. | 
boolean select(Member member)
member - the member instance to decide uponCopyright © 2016 Hazelcast, Inc.. All Rights Reserved.