Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/develop/go/core-application.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -911,6 +911,13 @@ Lastly, call either the `Start()` or the `Run()` method on the instance of the W
Run accepts an interrupt channel as a parameter, so that the Worker can be stopped in the terminal.
Otherwise, the `Stop()` method must be called to stop the Worker.

:::note

The Worker process is a long-running process that blocks while polling for tasks. Run it in a separate terminal from your
starter code or other application logic.

:::

:::tip

If you have [`gow`](https://github.com/mitranim/gow) installed, the Worker Process automatically "reloads" when you update the Worker file:
Expand Down
Loading