mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-30 12:57:06 +02:00
18 lines
834 B
Markdown
18 lines
834 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [BaseTask](./bitburner.basetask.md) > [nextCompletion](./bitburner.basetask.nextcompletion.md)
|
|
|
|
## BaseTask.nextCompletion property
|
|
|
|
This promise resolves when the task completes or is canceled.
|
|
|
|
Tasks that do not track progress, such as studying or working for a company, are non-completable, i.e., they continue indefinitely until canceled. The `nextCompletion` promise of these tasks resolves only when they are canceled.
|
|
|
|
Among completable tasks, some are repeatable, i.e., they automatically restart after completion. The `nextCompletion` promise of these tasks resolves on the next completion or when they are canceled.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
nextCompletion: Promise<void>;
|
|
```
|