You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/actors.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Actors are the programs that run on the Apify platform. Access the Actor collect
9
9
| Method | Description |
10
10
| --- | --- |
11
11
|`List(ctx, ActorListOptions) (PaginationList[Actor], error)`| List the account's Actors. |
12
+
|`Iterate(ActorListOptions, chunkSize *int64) *ListIterator[Actor]`| Lazy iterator over matching Actors. `Limit` caps the total yielded; `chunkSize` is the page size. |
12
13
|`Create(ctx, definition any) (Actor, error)`| Create a new Actor. |
13
14
14
15
`Create` takes a free-form definition (`any`) serialized to JSON, so the Actor's fields are
@@ -92,6 +93,11 @@ The `Actor` value returned by `Get`/`Create`/`Update` and listed by `List`:
Copy file name to clipboardExpand all lines: docs/builds.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ single build with `client.Build(id)`, and an Actor's builds with `client.Actor(i
8
8
| Method | Description |
9
9
| --- | --- |
10
10
|`List(ctx, ListOptions) (PaginationList[Build], error)`| List builds. |
11
+
|`Iterate(ListOptions, chunkSize *int64) *ListIterator[Build]`| Lazy iterator over matching builds. `Limit` caps the total yielded; `chunkSize` is the page size. |
0 commit comments