T - The type of the values bound to the DataflowVariable that is being listened topublic class BindErrorAdapter<T> extends java.lang.Object implements BindErrorListener<T>
| Constructor and Description |
|---|
BindErrorAdapter() |
| 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
|
public void onBindError(T oldValue, T failedValue, boolean uniqueBind)
onBindError in interface BindErrorListener<T>oldValue - The already bound valuefailedValue - The value attempted to be bounduniqueBind - Flag indicating bindUnique() method callpublic void onBindError(T oldValue, java.lang.Throwable failedError)
onBindError in interface BindErrorListener<T>oldValue - The already bound valuefailedError - The error attempted to be boundpublic void onBindError(java.lang.Throwable oldError,
T failedValue,
boolean uniqueBind)
onBindError in interface BindErrorListener<T>oldError - The already bound ThrowablefailedValue - The value attempted to be bounduniqueBind - Flag indicating bindUnique() method callpublic void onBindError(java.lang.Throwable oldError,
java.lang.Throwable failedError)
onBindError in interface BindErrorListener<T>oldError - The already bound ThrowablefailedError - The error attempted to be bound