Browse Source
Merge pull request #7123 from 09azAZ/patch-1
AbpTimer -> AbpAsyncTimer
pull/7124/head
maliming
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
docs/en/Background-Workers.md
|
|
|
@ -45,7 +45,7 @@ Assume that we want to make a user passive, if the user has not logged in to the |
|
|
|
public class PassiveUserCheckerWorker : AsyncPeriodicBackgroundWorkerBase |
|
|
|
{ |
|
|
|
public PassiveUserCheckerWorker( |
|
|
|
AbpTimer timer, |
|
|
|
AbpAsyncTimer timer, |
|
|
|
IServiceScopeFactory serviceScopeFactory |
|
|
|
) : base( |
|
|
|
timer, |
|
|
|
@ -137,4 +137,4 @@ ABP Framework's background worker system is good to implement periodic tasks. Ho |
|
|
|
|
|
|
|
## See Also |
|
|
|
* [Quartz Integration for the background workers](Background-Workers-Quartz.md) |
|
|
|
* [Background Jobs](Background-Jobs.md) |
|
|
|
* [Background Jobs](Background-Jobs.md) |
|
|
|
|