public interface OperationTracker
Modifier and Type | Method and Description |
---|---|
<T> T |
invoke(String description,
Invokable<T> operation)
As with
run(String, Runnable) , but the operation may return a value. |
<T> T |
perform(String description,
IOOperation<T> operation)
As with
invoke(String, Invokable) , but the operation may throw an IOException . |
void |
run(String description,
Runnable operation)
Executes the operation.
|
void run(String description, Runnable operation)
RuntimeException
it will be logged and rethrown
wrapped as a OperationException
.description
- used if there is an exceptionoperation
- to execute<T> T invoke(String description, Invokable<T> operation)
run(String, Runnable)
, but the operation may return a value.description
- used if there is an exceptionoperation
- to invoke<T> T perform(String description, IOOperation<T> operation) throws IOException
invoke(String, Invokable)
, but the operation may throw an IOException
.description
- used if there is an exception (outside of IOException)operation
- to performIOException
5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.