Class SimpleQueueItem
Item containing Action and identificator used for checking duplicity in queue of SimpleQueueWorker<T>.
public class SimpleQueueItem
- Inheritance
-
objectSimpleQueueItem
- Extension Methods
Properties
Action
Action to be run by SimpleQueueWorker<T>.
public Action Action { get; set; }
Property Value
- Action
Key
Key for checking duplicity in queue of SimpleQueueWorker<T>. Default value is unique System.Guid.
public string Key { get; set; }
Property Value
- string
Methods
Equals(object)
Equals override checking equality of actions by Key property.
public override bool Equals(object obj)
Parameters
obj
object
Returns
- bool
GetHashCode()
Override required by compiler.
public override int GetHashCode()
Returns
- int