<PackageReference Include="System.Reactive" Version="6.0.0-preview.13" />

System.Reactive.Concurrency.ScheduledItem<TAbsolute, TValue>

public sealed class ScheduledItem<TAbsolute, TValue> : ScheduledItem<TAbsolute> where TAbsolute : IComparable<TAbsolute>
Represents a scheduled work item based on the materialization of an IScheduler.Schedule method call.
namespace System.Reactive.Concurrency { public sealed class ScheduledItem<[System.Runtime.CompilerServices.Nullable(0)] TAbsolute, [System.Runtime.CompilerServices.Nullable(2)] TValue> : ScheduledItem<TAbsolute> where TAbsolute : IComparable<TAbsolute> { public ScheduledItem(IScheduler scheduler, TValue state, Func<IScheduler, TValue, IDisposable> action, TAbsolute dueTime, IComparer<TAbsolute> comparer); public ScheduledItem(IScheduler scheduler, TValue state, Func<IScheduler, TValue, IDisposable> action, TAbsolute dueTime); } }