Class CounterTask
public sealed class CounterTask : IDisposable
- Inheritance
-
CounterTask
- Implements
- Inherited Members
- Extension Methods
Constructors
CounterTask(int, int)
Creates a new CounterTask instance.
public CounterTask(int limit, int count = 0)
Parameters
limit
intAn immutable value. Once Count reaches this value, then the underlying Task will get completed. Negative values will be replaced with 0.
count
intInitial count. Equal to 0 by default. If greater than or equal to
limit
, then the underlying Task wiil get completed immediately.
Properties
Count
public int Count { get; }
Property Value
Limit
public int Limit { get; }
Property Value
Task
Underlying task that gets completed once Count reached the Limit or when this CounterTask gets disposed, which will cancel it instead.
public Task Task { get; }
Property Value
Methods
Add(int)
Increases the Count by the provided count
.
When Count reaches the Limit, then the Task gets completed.
public bool Add(int count)
Parameters
Returns
- bool
true when the Task is already completed or when the Count reaches the Limit and Task gets completed because of that, otherwise false.
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
Remarks
If the Task isn't completed yet, then it will get cancelled instead.
Increment()
public bool Increment()
Returns
- bool
true when the Task is already completed or when the Count reaches the Limit and Task gets completed because of that, otherwise false.
Remarks
Equivalent to Add(int) with count equal to 1.