diff --git a/docs/en/solution-templates/single-layer-web-application/background-jobs.md b/docs/en/solution-templates/single-layer-web-application/background-jobs.md new file mode 100644 index 0000000000..1a3d592a5e --- /dev/null +++ b/docs/en/solution-templates/single-layer-web-application/background-jobs.md @@ -0,0 +1,19 @@ +# Single Layer Solution: Background Jobs + +```json +//[doc-nav] +{ + "Previous": { + "Name": "Swagger integration", + "Path": "solution-templates/single-layer-web-application/swagger-integration" + }, + "Next": { + "Name": "Background Workers", + "Path": "solution-templates/single-layer-web-application/background-workers" + } +} +``` + +Background jobs are long-running, asynchronous tasks that run in the background of your application. They are useful for tasks that are not time-sensitive, such as sending emails, generating reports, or processing data. Background jobs are typically triggered by a user action or a scheduled task. You can learn more about background jobs in the [Background Jobs](../../framework/infrastructure/background-jobs/index.md) document. + +In the Single Layer solution template, background jobs are implemented using the [Background Jobs](../../modules/background-jobs.md) module. This module provides a simple and efficient way to create and manage background jobs in your application. It includes features such as job queues, job scheduling. It stores job information in the database, allowing you to track the status of jobs and retry failed jobs. \ No newline at end of file diff --git a/docs/en/solution-templates/single-layer-web-application/index.md b/docs/en/solution-templates/single-layer-web-application/index.md index e83100e7cf..be7908d87b 100644 --- a/docs/en/solution-templates/single-layer-web-application/index.md +++ b/docs/en/solution-templates/single-layer-web-application/index.md @@ -28,6 +28,8 @@ ABP Studio offers pre-architected, production-ready templates to quickly start a * [Database configurations](database-configurations.md) * [Logging (with Serilog)](logging.md) * [Swagger integration](swagger-integration.md) + * [Bacground Jobs](background-jobs.md) + * [Background Workers](background-workers.md) * [Multi-Tenancy](multi-tenancy.md) * [BLOB storing](blob-storing.md) * [CORS configuration](cors-configuration.md) \ No newline at end of file diff --git a/docs/en/solution-templates/single-layer-web-application/swagger-integration.md b/docs/en/solution-templates/single-layer-web-application/swagger-integration.md index bd6ddcf584..6de24705ee 100644 --- a/docs/en/solution-templates/single-layer-web-application/swagger-integration.md +++ b/docs/en/solution-templates/single-layer-web-application/swagger-integration.md @@ -8,8 +8,8 @@ "Path": "solution-templates/single-layer-web-application/logging" }, "Next": { - "Name": "Multi-Tenancy", - "Path": "solution-templates/single-layer-web-application/multi-tenancy" + "Name": "Background Jobs", + "Path": "solution-templates/single-layer-web-application/background-jobs" } } ```