IScheduledItem<TAbsolute> Interface
Represents a work item that has been scheduled.
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Interface IScheduledItem(Of TAbsolute)
'Usage
Dim instance As IScheduledItem(Of TAbsolute)
public interface IScheduledItem<TAbsolute>
generic<typename TAbsolute>
public interface class IScheduledItem
type IScheduledItem<'TAbsolute> = interface end
JScript does not support generic types and methods.
Type Parameters
- TAbsolute
The absolute time argument type.
The IScheduledItem<TAbsolute> type exposes the following members.
Properties
Name | Description | |
---|---|---|
DueTime | Get the absolute time at which the item executes. |
Top
Methods
Name | Description | |
---|---|---|
Invoke | Invokes the work item. |
Top