Interface Predicate<T>


  • public interface Predicate<T>
    Deprecated.
    Will be removed in favor of pekko.japi.function.Predicate in Pekko 2.0.0. Since 1.2.0.
    Java API: Defines a criteria and determines whether the parameter meets this criteria.

    This class is kept for compatibility, but for future API's please prefer Predicate.

    • Method Detail

      • test

        boolean test​(T param)
        Deprecated.