Interface IScheduledItem<TAbsolute>
Represents a work item that has been scheduled.
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.Interfaces.dll
Syntax
public interface IScheduledItem<TAbsolute>
Type Parameters
Name | Description |
---|---|
TAbsolute | Absolute time representation type. |
Properties
| Improve this Doc View SourceDueTime
Gets the absolute time at which the item is due for invocation.
Declaration
TAbsolute DueTime { get; }
Property Value
Type | Description |
---|---|
TAbsolute |
Methods
| Improve this Doc View SourceInvoke()
Invokes the work item.
Declaration
void Invoke()