Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.3 KiB

//[doc-seo]
{
    "Description": "Learn how to efficiently implement and manage background jobs in your layered solution using the ABP Framework for asynchronous tasks."
}

Layered Solution: Background Jobs

//[doc-nav]
{
  "Previous": {
    "Name": "Swagger integration",
    "Path": "solution-templates/layered-web-application/swagger-integration"
  },
  "Next": {
    "Name": "Background Workers",
    "Path": "solution-templates/layered-web-application/background-workers"
  }
}

Background jobs are long-running, asynchronous tasks that operate in the background of your application. They are ideal for non-time-sensitive tasks, such as sending emails, generating reports, or processing data. These jobs are usually triggered by a user action or a scheduled task. For more information, refer to the Background Jobs document.

In the layered solution template, background jobs are implemented using the Background Jobs module. This module offers a simple and efficient way to create and manage background jobs in your application. It provides features like job queues and job scheduling. Job information is stored in the database, enabling you to track job statuses and retry failed jobs.