A .NET library that provides a simple way to execute an action at a specified interval with precise timing control.
$ dotnet add package ktsu.IntervalActionA .NET library that provides a simple way to execute an action at a specified interval.
IntervalAction is a .NET library that provides a simple and flexible way to execute an action at a specified interval. It offers precise control over execution timing, various interval types, and easy management of scheduled actions. Designed for scenarios where you need recurring tasks like polling, background processing, or timed updates.
Install-Package ktsu.IntervalAction
dotnet add package ktsu.IntervalAction
<PackageReference Include="ktsu.IntervalAction" Version="x.y.z" />
using ktsu.IntervalAction;
var intervalAction = IntervalAction.Start(new()
{
Action = () => Console.WriteLine("Hello, World!"),
ActionInterval = TimeSpan.FromSeconds(1),
PollingInterval = TimeSpan.FromMilliseconds(100), // Optional, default is 1 second
IntervalType = IntervalType.FromLastStart // Optional, default is FromLastCompletion
});
// An action will execute immediately and then every second
// outputting "Hello, World!" to the console until stopped
intervalAction.Stop();
// The action will no longer execute until you call Restart()
intervalAction.Restart();
using ktsu.IntervalAction;
var intervalAction = IntervalAction.Start(new()
{
Action = () =>
{
Console.WriteLine($"Action started at: {DateTimeOffset.Now}");
// Simulate a task that takes some time to complete
Task.Delay(500).Wait();
Console.WriteLine($"Action completed at: {DateTimeOffset.Now}");
},
ActionInterval = TimeSpan.FromSeconds(2),
PollingInterval = TimeSpan.FromMilliseconds(100),
IntervalType = IntervalType.FromLastCompletion // Waits until the action completes before starting the interval timer
});
// The action will execute immediately and then every 2 seconds after the previous execution completes
using ktsu.IntervalAction;
var intervalAction = IntervalAction.Start(new()
{
Action = async () =>
{
Console.WriteLine("Starting long-running task...");
// Simulate a long-running task
await Task.Delay(5000);
Console.WriteLine("Long-running task completed");
},
ActionInterval = TimeSpan.FromSeconds(10),
IntervalType = IntervalType.FromLastCompletion // Important for long-running tasks
});
// For cleanup when done
await Task.Delay(60000); // Run for 1 minute
intervalAction.Stop();
using ktsu.IntervalAction;
// Create with initial settings
var options = new IntervalActionOptions
{
Action = () => Console.WriteLine($"Tick at {DateTime.Now}"),
ActionInterval = TimeSpan.FromSeconds(5)
};
var intervalAction = IntervalAction.Start(options);
// Later, adjust the interval
await Task.Delay(20000); // After 20 seconds
intervalAction.Stop();
options.ActionInterval = TimeSpan.FromSeconds(1);
intervalAction.Restart();
Console.WriteLine("Interval changed to 1 second");
IntervalAction ClassThe main class for scheduling recurring actions.
| Name | Type | Description |
|---|---|---|
IsRunning | bool | Indicates if the action is currently scheduled to run |
Options | IntervalActionOptions | The current options for this interval action |
| Name | Parameters | Return Type | Description |
|---|---|---|---|
Start | IntervalActionOptions options | IntervalAction | Static factory method to create and start an interval action |
Stop | void | Stops the scheduled action from running | |
Restart | void | Restarts a previously stopped action | |
Dispose | void | Cleans up resources and stops the action |
IntervalActionOptions ClassConfiguration options for an interval action.
| Name | Type | Description |
|---|---|---|
Action | Action | The action to execute at intervals (required) |
ActionInterval | TimeSpan | The interval between executions (required) |
PollingInterval | TimeSpan | How frequently to check if action should run (optional, default 1 second) |
IntervalType | IntervalType | Determines how intervals are measured (optional, default FromLastCompletion) |
IntervalType EnumDefines how the interval is measured.
| Value | Description |
|---|---|
FromLastCompletion | The interval starts after the action has completed |
FromLastStart | The interval starts when the action begins executing |
Contributions are welcome! Here's how you can help:
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)Please make sure to update tests as appropriate and adhere to the existing coding style.
This project is licensed under the MIT License - see the LICENSE.md file for details.
Check the CHANGELOG.md for detailed release notes and version changes.
Special thanks to all contributors and the .NET community for their support.