Interface JetMemberSelector

All Superinterfaces:
Predicate<Member>, PredicateEx<Member>, Serializable
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface JetMemberSelector extends PredicateEx<Member>
Selects the members on which a specific job will run.
Since:
5.5
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final JetMemberSelector
    Selects all lite members on the cluster.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    testEx(Member member)
    Predicate to select members on which the job will run.

    Methods inherited from interface java.util.function.Predicate

    and, or

    Methods inherited from interface com.hazelcast.function.PredicateEx

    and, negate, or, test
  • Field Details

    • ALL_LITE_MEMBERS

      static final JetMemberSelector ALL_LITE_MEMBERS
      Selects all lite members on the cluster.
  • Method Details

    • testEx

      boolean testEx(Member member)
      Predicate to select members on which the job will run.
      Specified by:
      testEx in interface PredicateEx<Member>