ExistingWorkPolicy enum
An enumeration of the conflict resolution policies in case of a collision.
Constants
- append → const ExistingWorkPolicy
-
If there is existing pending (uncompleted) work with the same unique name, append the newly-specified work as a child of all the leaves of that work sequence.
const ExistingWorkPolicy(0)
- keep → const ExistingWorkPolicy
-
If there is existing pending (uncompleted) work with the same unique name, do nothing.
const ExistingWorkPolicy(1)
- replace → const ExistingWorkPolicy
-
If there is existing pending (uncompleted) work with the same unique name, cancel and delete it.
const ExistingWorkPolicy(2)
-
values
→ const List<
ExistingWorkPolicy> -
A constant List of the values in this enum, in order of their declaration.
const List<
ExistingWorkPolicy>
Properties
Methods
-
toString(
) → String -
Returns a string representation of this object.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited