IScheduledItem<TAbsolute>
using System.Runtime.CompilerServices;
namespace System.Reactive.Concurrency
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface IScheduledItem<[System.Runtime.CompilerServices.Nullable(2)] TAbsolute>
{
TAbsolute DueTime { get; }
void Invoke();
}
}