Exception designed not to be caught by tests (which may deliberately expect a timeout of another kind, for example).
This exception indicates that the scheduler timed out either in simulated time (e.g. a busy loop with a condition
never being satisfied) or in wall time (e.g. user code was waiting for a task which was never going to complete, due
to a deadlock).
An implementation of IScheduler that doesn't actually delay. This is useful for tests
which aren't interested in precise timing, but just want to be able to use a scheduler.
For more fine-grained control, use FakeScheduler.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["The latest version available is 4.10.0, with several previous versions also accessible, dating back to version 3.2.0."],["The `FakeClock` class allows for the specification of custom times and increments, implementing the `IClock` interface."],["The `FakeScheduler` class, designed to work with `FakeClock`, offers a simulated `IScheduler` environment, but is marked as experimental."],["The `NoOpScheduler` class provides an `IScheduler` implementation that doesn't delay, which is useful for testing scenarios where precise timing is not relevant."],["The `FakeScheduler.SchedulerTimeoutException` class is an exception that is designed to not be caught by tests, indicating a timeout in simulated time or wall time."]]],[]]