Skip to content

Commit e8359d1

Browse files
committed
Remove manual installation steps from TickerQ docs
1 parent 76300f4 commit e8359d1

File tree

2 files changed

+1
-45
lines changed

2 files changed

+1
-45
lines changed

docs/en/framework/infrastructure/background-jobs/tickerq.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,6 @@ abp add-package Volo.Abp.BackgroundJobs.TickerQ
1818

1919
> 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).
2020
21-
### Manual Installation
22-
23-
If you want to manually install;
24-
25-
1. Add the [Volo.Abp.BackgroundJobs.TickerQ](https://www.nuget.org/packages/Volo.Abp.BackgroundJobs.TickerQ) NuGet package to your project:
26-
27-
````
28-
dotnet add package Volo.Abp.BackgroundJobs.TickerQ
29-
````
30-
31-
2. Add the `AbpBackgroundJobsTickerQModule` to the dependency list of your module:
32-
33-
````csharp
34-
[DependsOn(
35-
//...other dependencies
36-
typeof(AbpBackgroundJobsTickerQModule) //Add the new module dependency
37-
)]
38-
public class YourModule : AbpModule
39-
{
40-
}
41-
````
42-
4321
## Configuration
4422

4523
### AddTickerQ

docs/en/framework/infrastructure/background-workers/tickerq.md

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,7 @@ Open a command line window in the folder of the project (.csproj file) and type
1414
abp add-package Volo.Abp.BackgroundWorkers.TickerQ
1515
````
1616

17-
### Manual Installation
18-
19-
If you want to manually install;
20-
21-
1. Add the [Volo.Abp.BackgroundWorkers.TickerQ](https://www.nuget.org/packages/Volo.Abp.BackgroundWorkers.TickerQ) NuGet package to your project:
22-
23-
````
24-
dotnet add package Volo.Abp.BackgroundWorkers.TickerQ
25-
````
26-
27-
2. Add the `AbpBackgroundWorkersTickerQModule` to the dependency list of your module:
28-
29-
````csharp
30-
[DependsOn(
31-
//...other dependencies
32-
typeof(AbpBackgroundWorkersTickerQModule) //Add the new module dependency
33-
)]
34-
public class YourModule : AbpModule
35-
{
36-
}
37-
````
38-
39-
> 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).
17+
> 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).
4018
4119
## Configuration
4220

0 commit comments

Comments
 (0)