From e8359d146bbad1cee474dfe2cc47d0c7df923433 Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 7 Oct 2025 15:09:18 +0800 Subject: [PATCH] Remove manual installation steps from TickerQ docs --- .../infrastructure/background-jobs/tickerq.md | 22 ----------------- .../background-workers/tickerq.md | 24 +------------------ 2 files changed, 1 insertion(+), 45 deletions(-) diff --git a/docs/en/framework/infrastructure/background-jobs/tickerq.md b/docs/en/framework/infrastructure/background-jobs/tickerq.md index 514ce16694..013a8fde74 100644 --- a/docs/en/framework/infrastructure/background-jobs/tickerq.md +++ b/docs/en/framework/infrastructure/background-jobs/tickerq.md @@ -18,28 +18,6 @@ abp add-package Volo.Abp.BackgroundJobs.TickerQ > If you haven't done it yet, you first need to install the [ABP CLI](../../../cli). For other installation options, see [the package description page](https://abp.io/package-detail/Volo.Abp.BackgroundJobs.TickerQ). -### Manual Installation - -If you want to manually install; - -1. Add the [Volo.Abp.BackgroundJobs.TickerQ](https://www.nuget.org/packages/Volo.Abp.BackgroundJobs.TickerQ) NuGet package to your project: - - ```` - dotnet add package Volo.Abp.BackgroundJobs.TickerQ - ```` - -2. Add the `AbpBackgroundJobsTickerQModule` to the dependency list of your module: - -````csharp -[DependsOn( - //...other dependencies - typeof(AbpBackgroundJobsTickerQModule) //Add the new module dependency - )] -public class YourModule : AbpModule -{ -} -```` - ## Configuration ### AddTickerQ diff --git a/docs/en/framework/infrastructure/background-workers/tickerq.md b/docs/en/framework/infrastructure/background-workers/tickerq.md index adc9269052..840b5137cb 100644 --- a/docs/en/framework/infrastructure/background-workers/tickerq.md +++ b/docs/en/framework/infrastructure/background-workers/tickerq.md @@ -14,29 +14,7 @@ Open a command line window in the folder of the project (.csproj file) and type abp add-package Volo.Abp.BackgroundWorkers.TickerQ ```` -### Manual Installation - -If you want to manually install; - -1. Add the [Volo.Abp.BackgroundWorkers.TickerQ](https://www.nuget.org/packages/Volo.Abp.BackgroundWorkers.TickerQ) NuGet package to your project: - - ```` - dotnet add package Volo.Abp.BackgroundWorkers.TickerQ - ```` - -2. Add the `AbpBackgroundWorkersTickerQModule` to the dependency list of your module: - -````csharp -[DependsOn( - //...other dependencies - typeof(AbpBackgroundWorkersTickerQModule) //Add the new module dependency - )] -public class YourModule : AbpModule -{ -} -```` - -> TickerQ background worker integration provides an adapter `TickerQPeriodicBackgroundWorkerAdapter` to automatically load any `PeriodicBackgroundWorkerBase` and `AsyncPeriodicBackgroundWorkerBase` derived classes as `ITickerQBackgroundWorker` instances. This allows you to still to easily switch over to use TickerQ as the background manager even you have existing background workers that are based on the [default background workers implementation](../background-workers). +> If you haven't done it yet, you first need to install the [ABP CLI](../../../cli). For other installation options, see [the package description page](https://abp.io/package-detail/Volo.Abp.BackgroundWorkers.TickerQ). ## Configuration