akka.japi.pf
Interface FI.Apply<I,R>

Type Parameters:
I - the input type, that this Apply will be applied to
R - the return type, that the results of the application will have
Enclosing class:
FI

public static interface FI.Apply<I,R>

Functional interface for an application.


Method Summary
 R apply(I i)
          The application to perform.
 

Method Detail

apply

R apply(I i)
        throws java.lang.Exception
The application to perform.

Parameters:
i - an instance that the application is performed on
Returns:
the result of the application
Throws:
java.lang.Exception