Package akka.japi.function

Interface Summary
Creator<T> A constructor/factory, takes no parameters but creates a new value of type T every call.
Effect An executable piece of code that takes no parameters and doesn't return any value.
Function<T,R> A Function interface.
Function2<T1,T2,R> A Function interface.
Predicate<T> Java API: Defines a criteria and determines whether the parameter meets this criteria.
Procedure<T> A Procedure is like a Function, but it doesn't produce a return value.