Search Results for

    Show / Hide Table of Contents

    Class TestScheduler

    TBD

    Inheritance
    object
    TestScheduler
    Implements
    IScheduler
    ITellScheduler
    ITimeProvider
    IAdvancedScheduler
    IActionScheduler
    IRunnableScheduler
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Akka.TestKit
    Assembly: Akka.TestKit.dll
    Syntax
    public class TestScheduler : IScheduler, ITellScheduler, ITimeProvider, IAdvancedScheduler, IActionScheduler, IRunnableScheduler

    Constructors

    | Edit this page View Source

    TestScheduler(Config, ILoggingAdapter)

    TBD

    Declaration
    public TestScheduler(Config schedulerConfig, ILoggingAdapter log)
    Parameters
    Type Name Description
    Config schedulerConfig

    TBD

    ILoggingAdapter log

    TBD

    Properties

    | Edit this page View Source

    Advanced

    TBD

    Declaration
    public IAdvancedScheduler Advanced { get; }
    Property Value
    Type Description
    IAdvancedScheduler
    | Edit this page View Source

    HighResMonotonicClock

    TBD

    Declaration
    public TimeSpan HighResMonotonicClock { get; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    MonotonicClock

    TBD

    Declaration
    public TimeSpan MonotonicClock { get; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    Now

    TBD

    Declaration
    public DateTimeOffset Now { get; }
    Property Value
    Type Description
    DateTimeOffset
    | Edit this page View Source

    TimeNow

    TBD

    Declaration
    protected DateTimeOffset TimeNow { get; }
    Property Value
    Type Description
    DateTimeOffset

    Methods

    | Edit this page View Source

    Advance(TimeSpan)

    TBD

    Declaration
    public void Advance(TimeSpan offset)
    Parameters
    Type Name Description
    TimeSpan offset

    TBD

    | Edit this page View Source

    AdvanceTo(DateTimeOffset)

    TBD

    Declaration
    public void AdvanceTo(DateTimeOffset when)
    Parameters
    Type Name Description
    DateTimeOffset when

    TBD

    Exceptions
    Type Condition
    InvalidOperationException

    This exception is thrown when the specified when offset is less than the currently tracked time.

    | Edit this page View Source

    ScheduleOnce(TimeSpan, IRunnable)

    Schedules an action to be invoked after a delay. The action is wrapped so that it completes inside the currently active actor if it is called from within an actor. Note! It's considered bad practice to use concurrency inside actors, and very easy to get wrong so usage is discouraged.

    Declaration
    public void ScheduleOnce(TimeSpan delay, IRunnable action)
    Parameters
    Type Name Description
    TimeSpan delay

    The time period that has to pass before the action is invoked.

    IRunnable action

    The action that is being scheduled.

    | Edit this page View Source

    ScheduleOnce(TimeSpan, IRunnable, ICancelable)

    Schedules an action to be invoked after a delay. The action is wrapped so that it completes inside the currently active actor if it is called from within an actor. Note! It's considered bad practice to use concurrency inside actors, and very easy to get wrong so usage is discouraged.

    Declaration
    public void ScheduleOnce(TimeSpan delay, IRunnable action, ICancelable cancelable)
    Parameters
    Type Name Description
    TimeSpan delay

    The time period that has to pass before the action is invoked.

    IRunnable action

    The action that is being scheduled.

    ICancelable cancelable

    A cancelable used to cancel the action from being executed.

    | Edit this page View Source

    ScheduleOnce(TimeSpan, Action)

    TBD

    Declaration
    public void ScheduleOnce(TimeSpan delay, Action action)
    Parameters
    Type Name Description
    TimeSpan delay

    TBD

    Action action

    TBD

    | Edit this page View Source

    ScheduleOnce(TimeSpan, Action, ICancelable)

    TBD

    Declaration
    public void ScheduleOnce(TimeSpan delay, Action action, ICancelable cancelable)
    Parameters
    Type Name Description
    TimeSpan delay

    TBD

    Action action

    TBD

    ICancelable cancelable

    TBD

    | Edit this page View Source

    ScheduleRepeatedly(TimeSpan, TimeSpan, IRunnable)

    Schedules an action to be invoked after an initial delay and then repeatedly. The action is wrapped so that it completes inside the currently active actor if it is called from within an actor. Note! It's considered bad practice to use concurrency inside actors, and very easy to get wrong so usage is discouraged.

    Declaration
    public void ScheduleRepeatedly(TimeSpan initialDelay, TimeSpan interval, IRunnable action)
    Parameters
    Type Name Description
    TimeSpan initialDelay

    The time period that has to pass before first invocation of the action.

    TimeSpan interval

    The time period that has to pass between each invocation of the action.

    IRunnable action

    The action that is being scheduled.

    | Edit this page View Source

    ScheduleRepeatedly(TimeSpan, TimeSpan, IRunnable, ICancelable)

    Schedules an action to be invoked after an initial delay and then repeatedly. The action is wrapped so that it completes inside the currently active actor if it is called from within an actor. Note! It's considered bad practice to use concurrency inside actors, and very easy to get wrong so usage is discouraged.

    Declaration
    public void ScheduleRepeatedly(TimeSpan initialDelay, TimeSpan interval, IRunnable action, ICancelable cancelable)
    Parameters
    Type Name Description
    TimeSpan initialDelay

    The time period that has to pass before first invocation of the action.

    TimeSpan interval

    The time period that has to pass between each invocation of the action.

    IRunnable action

    The action that is being scheduled.

    ICancelable cancelable

    A cancelable used to cancel the action from being executed.

    | Edit this page View Source

    ScheduleRepeatedly(TimeSpan, TimeSpan, Action)

    TBD

    Declaration
    public void ScheduleRepeatedly(TimeSpan initialDelay, TimeSpan interval, Action action)
    Parameters
    Type Name Description
    TimeSpan initialDelay

    TBD

    TimeSpan interval

    TBD

    Action action

    TBD

    | Edit this page View Source

    ScheduleRepeatedly(TimeSpan, TimeSpan, Action, ICancelable)

    TBD

    Declaration
    public void ScheduleRepeatedly(TimeSpan initialDelay, TimeSpan interval, Action action, ICancelable cancelable)
    Parameters
    Type Name Description
    TimeSpan initialDelay

    TBD

    TimeSpan interval

    TBD

    Action action

    TBD

    ICancelable cancelable

    TBD

    | Edit this page View Source

    ScheduleTellOnce(TimeSpan, ICanTell, object, IActorRef)

    TBD

    Declaration
    public void ScheduleTellOnce(TimeSpan delay, ICanTell receiver, object message, IActorRef sender)
    Parameters
    Type Name Description
    TimeSpan delay

    TBD

    ICanTell receiver

    TBD

    object message

    TBD

    IActorRef sender

    TBD

    | Edit this page View Source

    ScheduleTellOnce(TimeSpan, ICanTell, object, IActorRef, ICancelable)

    TBD

    Declaration
    public void ScheduleTellOnce(TimeSpan delay, ICanTell receiver, object message, IActorRef sender, ICancelable cancelable)
    Parameters
    Type Name Description
    TimeSpan delay

    TBD

    ICanTell receiver

    TBD

    object message

    TBD

    IActorRef sender

    TBD

    ICancelable cancelable

    TBD

    | Edit this page View Source

    ScheduleTellRepeatedly(TimeSpan, TimeSpan, ICanTell, object, IActorRef)

    TBD

    Declaration
    public void ScheduleTellRepeatedly(TimeSpan initialDelay, TimeSpan interval, ICanTell receiver, object message, IActorRef sender)
    Parameters
    Type Name Description
    TimeSpan initialDelay

    TBD

    TimeSpan interval

    TBD

    ICanTell receiver

    TBD

    object message

    TBD

    IActorRef sender

    TBD

    | Edit this page View Source

    ScheduleTellRepeatedly(TimeSpan, TimeSpan, ICanTell, object, IActorRef, ICancelable)

    TBD

    Declaration
    public void ScheduleTellRepeatedly(TimeSpan initialDelay, TimeSpan interval, ICanTell receiver, object message, IActorRef sender, ICancelable cancelable)
    Parameters
    Type Name Description
    TimeSpan initialDelay

    TBD

    TimeSpan interval

    TBD

    ICanTell receiver

    TBD

    object message

    TBD

    IActorRef sender

    TBD

    ICancelable cancelable

    TBD

    Implements

    IScheduler
    ITellScheduler
    ITimeProvider
    IAdvancedScheduler
    IActionScheduler
    IRunnableScheduler

    Extension Methods

    SchedulerExtensions.ScheduleOnce(IActionScheduler, int, Action, ICancelable)
    SchedulerExtensions.ScheduleOnceCancelable(IActionScheduler, int, Action)
    SchedulerExtensions.ScheduleOnceCancelable(IActionScheduler, TimeSpan, Action)
    SchedulerExtensions.ScheduleRepeatedly(IActionScheduler, int, int, Action, ICancelable)
    SchedulerExtensions.ScheduleRepeatedlyCancelable(IActionScheduler, int, int, Action)
    SchedulerExtensions.ScheduleRepeatedlyCancelable(IActionScheduler, TimeSpan, TimeSpan, Action)
    SchedulerExtensions.ScheduleTellOnceCancelable(IScheduler, int, ICanTell, object, IActorRef)
    SchedulerExtensions.ScheduleTellOnceCancelable(IScheduler, TimeSpan, ICanTell, object, IActorRef)
    SchedulerExtensions.ScheduleTellRepeatedlyCancelable(IScheduler, int, int, ICanTell, object, IActorRef)
    SchedulerExtensions.ScheduleTellRepeatedlyCancelable(IScheduler, TimeSpan, TimeSpan, ICanTell, object, IActorRef)
    SchedulerExtensions.ScheduleTellOnce(ITellScheduler, int, ICanTell, object, IActorRef, ICancelable)
    SchedulerExtensions.ScheduleTellRepeatedly(ITellScheduler, int, int, ICanTell, object, IActorRef, ICancelable)
    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET