Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created February 19, 2021 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitvijay/c9b375e07d936fcf5baa28fb6f28100e to your computer and use it in GitHub Desktop.
Save ankitvijay/c9b375e07d936fcf5baa28fb6f28100e to your computer and use it in GitHub Desktop.
Default Background Service
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace SchedulerJobSample.Worker
{
public class Worker : BackgroundService
{
private readonly ILogger<Worker> _logger;
public Worker(ILogger<Worker> logger)
{
_logger = logger;
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
_logger.LogInformation("Worker running at: {time}", DateTimeOffset.Now);
await Task.Delay(1000, stoppingToken);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment