| Interface | Description |
|---|---|
| IChangeNotify<DATATYPE> |
Simple notification interface.
|
| IExceptionHandler<EXTYPE extends Throwable> |
Callback interface to handle thrown exception objects.
|
| INonThrowingCallable<DATATYPE> |
Like the
Callable interface but not throwing an
exception! |
| INonThrowingCallableWithParameter<DATATYPE,PARAMTYPE> |
Like the
Callable interface but not throwing an
exception and including a parameter! |
| INonThrowingRunnable |
A simple interface that looks like
Runnable but follows our
naming conventions. |
| INonThrowingRunnableWithParameter<PARAMTYPE> |
Simple callback interface to allow generic iteration with a typed callback
function.
|
| IThrowingCallable<DATATYPE> |
This is the same as the
Callable interface but
following our naming conventions. |
| IThrowingCallableWithParameter<DATATYPE,PARAMTYPE> |
Like the
Callable interface but including a
parameter! |
| IThrowingRunnable |
A simple interface that looks like
Runnable but may throw
an exception on its execution. |
| IThrowingRunnableWithParameter<PARAMTYPE> |
Simple callback interface to allow generic iteration with a typed callback
function.
|
| Class | Description |
|---|---|
| AdapterCallableToCallableWithParam<DATATYPE,PARAMTYPE> |
A helper class that converts a
Callable into an
IThrowingCallableWithParameter. |
| AdapterRunnableToCallable<DATATYPE> |
A helper class that converts a
Runnable into an
INonThrowingCallable. |
| AdapterRunnableToCallableWithParameter<DATATYPE,PARAMTYPE> |
A helper class that converts a
INonThrowingRunnableWithParameter into
an INonThrowingCallableWithParameter. |
| AdapterRunnableToRunnableWithParameter<PARAMTYPE> |
A helper class that converts a
Runnable into an
IThrowingRunnableWithParameter. |
| AdapterRunnableToThrowingRunnable |
A helper class that converts a
Runnable into an
IThrowingRunnable. |
| AdapterThrowingRunnableToCallable<DATATYPE> |
A helper class that converts a
IThrowingRunnable into an
IThrowingCallable. |
| AdapterThrowingRunnableToCallableWithParameter<DATATYPE,PARAMTYPE> |
A helper class that converts a
IThrowingRunnable into an
IThrowingCallable. |
| DoNothingExceptionHandler |
A specific implementation of the
IExceptionHandler interface, that
swallows all exceptions and does nothing. |
| LoggingExceptionHandler |
A specific implementation of the
IExceptionHandler interface, that
logs all exceptions to a standard logger. |
Copyright © 2006–2014 phloc systems. All rights reserved.