Interface ThrowableRecorder
-
- All Known Implementing Classes:
ReusableGraphQueryResult
,ReusableTupleQueryResult
public interface ThrowableRecorder
- Since:
- 4.0.0
- Author:
- Florian Kleedorfer
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static void
recordingThrowable(Runnable runnable, ThrowableRecorder recorder)
static <T> T
recordingThrowable(Supplier<T> supplier, ThrowableRecorder recorder)
void
recordThrowable(Throwable t)
-
-
-
Method Detail
-
recordThrowable
void recordThrowable(Throwable t)
-
recordingThrowable
static <T> T recordingThrowable(Supplier<T> supplier, ThrowableRecorder recorder)
-
recordingThrowable
static void recordingThrowable(Runnable runnable, ThrowableRecorder recorder)
-
-