org.omnifaces.util
Interface Callback.Returning<R>

Type Parameters:
R - The return type.
Enclosing class:
Callback

public static interface Callback.Returning<R>

Use this if you need a callback which returns a value.

Author:
Bauke Scholtz

Method Summary
 R invoke()
          This method should be invoked by the method where you're passing this callback instance to.
 

Method Detail

invoke

R invoke()
This method should be invoked by the method where you're passing this callback instance to.

Returns:
The callback result.