Provides a set of classes that allow to execute one or several Action
instances on a regular time schedule.
If more than one Action
instances are passed to a class, they will be executed sequentially.
Using NuGet package manager console:
Install-Package ScheduledActions
Using .NET CLI:
dotnet add package ScheduledActions
Please Note: All these classes implements the IDisposable
interface, so any instance must be properly disposed when no longer needed.
Prepares an action that will be executed each X hours.
Prepares an action that will be executed each X days.
Prepares an action that will be executed each X weeks.
Prepares an action that will be executed each X months.