Browse Source

Merge pull request #7123 from 09azAZ/patch-1

AbpTimer -> AbpAsyncTimer
pull/7124/head
maliming 5 years ago
committed by GitHub
parent
commit
56f4017367
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/en/Background-Workers.md

4
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)

Loading…
Cancel
Save