public interface BindErrorListener<T>
Modifier and Type | Method and Description |
---|---|
void |
onBindError(java.lang.Throwable oldError,
T failedValue,
boolean uniqueBind)
Notifies about failed bind operations
|
void |
onBindError(java.lang.Throwable oldError,
java.lang.Throwable failedError)
Notifies about failed bindError operations
|
void |
onBindError(T oldValue,
T failedValue,
boolean uniqueBind)
Notifies about failed bind operations
|
void |
onBindError(T oldValue,
java.lang.Throwable failedError)
Notifies about failed bindError operations
|
void onBindError(T oldValue, T failedValue, boolean uniqueBind)
oldValue
- The already bound valuefailedValue
- The value attempted to be bounduniqueBind
- Flag indicating bindUnique() method callvoid onBindError(T oldValue, java.lang.Throwable failedError)
oldValue
- The already bound valuefailedError
- The error attempted to be boundvoid onBindError(java.lang.Throwable oldError, T failedValue, boolean uniqueBind)
oldError
- The already bound ThrowablefailedValue
- The value attempted to be bounduniqueBind
- Flag indicating bindUnique() method callvoid onBindError(java.lang.Throwable oldError, java.lang.Throwable failedError)
oldError
- The already bound ThrowablefailedError
- The error attempted to be bound