Skip to content
Open
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
8 changes: 8 additions & 0 deletions website/src/content/docs/actors/lifecycle.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ Actors transition through several states during their lifetime. Each transition

1. Action handler executes

**On Fetch Request** (per HTTP request to `/actors/{actorName}/http/*`)

1. `onRequest` handler executes

**On WebSocket Connection** (per WebSocket upgrade to `/actors/{actorName}/ws/*`)

1. `onWebSocket` handler executes

**On Inbound Queue Publish** (per `handle.send(...)`)

1. `queues.<name>.canPublish` (if defined)
Expand Down
Loading