Enumeration DeduplicationStrategy

Source
Expand description

Strategy for handling duplicate tasks with the same key.

Enumeration Members§

§

Cancel = 1

Cancel the previous task and create a new one.

§

Merge = 0

Merge duplicate tasks into one. All callers will receive the same result.

§

Retry = 2

Retry the previously failed task.