Skip to content

Commit

Permalink
update document
Browse files Browse the repository at this point in the history
  • Loading branch information
falvarez1 committed May 23, 2024
1 parent 64947bf commit ccfcdad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/features/startup-jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**NCronJob** allows you to configure jobs to run at application startup. This is useful for tasks that need to be executed immediately when the application starts, such as initial data loading, cleanup tasks, or other setup procedures.

Startup jobs are defined like regular CRON jobs and inherit from `IJob`. The only difference is that they are configured to run at startup.
Startup jobs are defined like regular CRON jobs and inherit from `IJob`. The only difference is that they are configured to run at startup. **All** startup jobs must be completed prior to the start of any other CRON (or instant) jobs.

```csharp
public class MyStartupJob : IJob
Expand Down

0 comments on commit ccfcdad

Please sign in to comment.