public interface GenericOperation<R>
Allows for a generic operation that can be executed in a particular context.
- Author:
- Kelly Tisdell
-
Method Summary
Returns R, the return value and throws T, the Throwable.
-
Method Details
-
execute
Returns R, the return value and throws T, the Throwable. Use
Void
as the return type
and return null if void is the expected return type.
- Returns:
- Throws:
Exception