com.hazelcast.core
Interface MemberSelector


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"));
     }
 }


Method Summary
 boolean select(Member member)
          Decides if the given member will be part of an operation or not.
 

Method Detail

select

boolean select(Member member)
Decides if the given member will be part of an operation or not.

Parameters:
member - the member instance to decide upon
Returns:
true if the member should take part in the operation, false otherwise


Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.