MakoIoT.Device.Services.Scheduler 1.0.46.39899

dotnet add package MakoIoT.Device.Services.Scheduler --version 1.0.46.39899
NuGet\Install-Package MakoIoT.Device.Services.Scheduler -Version 1.0.46.39899
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MakoIoT.Device.Services.Scheduler" Version="1.0.46.39899" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MakoIoT.Device.Services.Scheduler --version 1.0.46.39899
#r "nuget: MakoIoT.Device.Services.Scheduler, 1.0.46.39899"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MakoIoT.Device.Services.Scheduler as a Cake Addin
#addin nuget:?package=MakoIoT.Device.Services.Scheduler&version=1.0.46.39899

// Install MakoIoT.Device.Services.Scheduler as a Cake Tool
#tool nuget:?package=MakoIoT.Device.Services.Scheduler&version=1.0.46.39899

Mako-IoT.Device.Services.Scheduler

Launches given tasks at configured intervals.

Usage

  1. Implement your task
public class MyServiceTask : ITask
{
    private readonly IMyService _myService;
    public string Id { get; }

    public MyServiceTask(IMyService myService)
    {
        Id = nameof(MyServiceTask); //give task a name
        _myService = myService; //inject service to call
    }
    
    public void Execute()
    {
        _myService.DoSomething(); //call the service
    }
}
  1. Configure Scheduler
DeviceBuilder.Create()
    .AddLogging(new LoggerConfig(LogLevel.Information))
    .AddConfiguration(cfg =>
    {
        cfg.WriteDefault(SchedulerConfig.SectionName, new SchedulerConfig
        {
            //run the task every 30 seconds
            Tasks = new[]{ new SchedulerTaskConfig { TaskId = nameof(MyServiceTask), IntervalMs = 30000 }}
        });
    .AddScheduler(options =>
    {
        options.AddTask(typeof(MyServiceTask), nameof(MyServiceTask));
    })
    .Build()
    .Start();

See DeviceBuilder readme

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.46.39899 84 3/23/2024
1.0.45.38276 160 1/6/2024
1.0.44.31074 107 12/30/2023
1.0.43.8795 154 12/2/2023
1.0.42.16726 125 12/1/2023
1.0.41.16532 114 11/17/2023
1.0.40.16754 95 11/16/2023
1.0.39.30899 113 11/11/2023
1.0.38.59907 94 11/10/2023
1.0.37.47489 94 11/9/2023
1.0.36.6724 113 11/8/2023
1.0.35.51773 119 10/6/2023
1.0.33.31618 136 10/6/2023
1.0.31.52146 193 5/25/2023
1.0.30.386 145 5/24/2023
1.0.28.55038 139 5/22/2023
1.0.27.18384 148 5/22/2023
1.0.26.28194 161 5/22/2023
1.0.25.47144 146 5/22/2023
1.0.24.48714 158 5/22/2023