Package io.jmix.flowui.data.binding
Interface SuspendableBinding
- All Known Implementing Classes:
AbstractValueBinding,CheckboxValueBinding,FieldValueBinding
public interface SuspendableBinding
Represents a binding mechanism that can be suspended and resumed.
-
Method Summary
Modifier and TypeMethodDescriptionvoidresume()Resumes the operation of the binding mechanism, restoring it to its active state after being previously suspended.voidsuspend()Suspends the current binding, temporarily pausing its operation.booleanIndicates whether the current binding is in a suspended state.
-
Method Details
-
suspend
void suspend()Suspends the current binding, temporarily pausing its operation. -
resume
void resume()Resumes the operation of the binding mechanism, restoring it to its active state after being previously suspended. -
suspended
boolean suspended()Indicates whether the current binding is in a suspended state.- Returns:
trueif the binding is currently suspended,falseotherwise
-