Gets notified about errors when binding values to DataflowVariables
Type | Name and description |
---|---|
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(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 |
Notifies about failed bind operations
oldValue
- The already bound valuefailedValue
- The value attempted to be bounduniqueBind
- Flag indicating bindUnique() method callNotifies about failed bindError operations
oldValue
- The already bound valuefailedError
- The error attempted to be boundNotifies about failed bind operations
oldError
- The already bound ThrowablefailedValue
- The value attempted to be bounduniqueBind
- Flag indicating bindUnique() method callNotifies about failed bindError operations
oldError
- The already bound ThrowablefailedError
- The error attempted to be bound