Skip to content

Commit afb68ca

Browse files
author
rivet-docs-sync[bot]
committed
docs(actors): sync from rivet-dev/actors@aedce9e
1 parent c0bdc4b commit afb68ca

3 files changed

Lines changed: 0 additions & 13 deletions

File tree

vendor/actors/docs/content/docs/limits.mdx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ These limits affect actions that do not use `.connect()` and [low-level HTTP req
5656
| Max response body size || 20 MiB | Maximum size of HTTP response bodies. |
5757
| Request timeout | 60 seconds || Maximum time for an `onRequest` handler to complete. Defaults to `actionTimeout`; configure with `actionTimeout`. |
5858

59-
### Actions
60-
61-
| Name | Soft Limit | Hard Limit | Description |
62-
|------|------------|------------|-------------|
63-
| Max actions per actor | 128 | None | Maximum number of action handlers defined on one actor. Nested action groups count each leaf handler. Configurable via `maxActions`. |
64-
6559
### Networking
6660

6761
| Name | Soft Limit | Hard Limit | Description |

vendor/actors/examples/docs/actors-limits/actor-options.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { actor } from "rivetkit";
22

33
const myActor = actor({
44
options: {
5-
maxActions: 128,
65
maxQueueSize: 1000,
76
actionTimeout: 60_000,
87
stateSaveInterval: 1_000,

vendor/actors/rivetkit-typescript/artifacts/actor-config.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,6 @@
109109
"description": "Icon for the actor in the Inspector UI. Can be an emoji (e.g., '🚀') or FontAwesome icon name (e.g., 'rocket').",
110110
"type": "string"
111111
},
112-
"maxActions": {
113-
"description": "Maximum number of action handlers that may be defined on this actor. Default: 128",
114-
"type": "integer",
115-
"minimum": 0,
116-
"maximum": 9007199254740991
117-
},
118112
"enableActorRuntimeSocket": {
119113
"description": "Enables the experimental Actor Runtime Socket for this actor. Default: false",
120114
"type": "boolean"

0 commit comments

Comments
 (0)