// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Reactive.Concurrency
{
///
/// Represents a work item that has been scheduled.
///
/// Absolute time representation type.
public interface IScheduledItem
{
///
/// Gets the absolute time at which the item is due for invocation.
///
TAbsolute DueTime { get; }
///
/// Invokes the work item.
///
void Invoke();
}
}