Quick start¶

After installing the package, add or update the OWIN Startup class with the following lines:

  1.  
  2. // ...
  3.  
  4. {
  5. GlobalConfiguration.Configuration.UseSqlServerStorage("<connection string or its name>");
  6.  
  7. app.UseHangfireServer();
  8. }

Authorization configuration required

By default only local access is permitted to the Hangfire Dashboard. must be configured in order to allow remote access.

Then open the Hangfire Dashboard to test your configuration. Please, build the project and open the following URL in a browser:

Hangfire handles different types of background jobs, and all of them are invoked on a separate execution context.

Fire-and-forget¶

This is the main background job type, persistent message queues are used to handle it. Once you create a fire-and-forget job, it is saved to its queue ( by default, but multiple queues supported). The queue is listened by a couple of dedicated workers that fetch a job and perform it.

Delayed¶

If you want to delay the method invocation for a certain type, call the following method. After the given delay the job will be put to its queue and invoked as a regular fire-and-forget job.

  1. BackgroundJob.Schedule(() => Console.WriteLine("Delayed"), TimeSpan.FromDays(1));

Recurring¶

To call a method on a recurrent basis (hourly, daily, etc), use the RecurringJob class. You are able to specify the schedule using CRON expressions to handle more complex scenarios.

Continuations¶

  1. BackgroundJob.ContinueWith(id, () => Console.WriteLine("world!"));

… and relax¶

Hangfire saves your jobs into persistent storage and processes them in a reliable way. It means that you can abort Hangfire worker threads, unload application domain or even terminate the process, and your jobs will be processed anyway . Hangfire flags your job as completed only when the last line of your code was performed, and knows that the job can fail before this last line. It contains different auto-retrying facilities, that can handle either storage errors or errors inside your code.

This is very important for generic hosting environment, such as IIS Server. They can contain different optimizations, timeouts and error-handling code (that may cause process termination) to prevent bad things to happen. If you are not using the reliable processing and auto-retrying, your job can be lost. And your end user may wait for its email, report, notification, etc. indefinitely.

||But when your storage becomes broken, Hangfire can not do anything. Please, use different failover strategies for your storage to guarantee the processing of each job in case of a disaster.

原文: