Skip to content

Commit

Permalink
document other places
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoScheufler committed Oct 24, 2024
1 parent 0fb8779 commit 8b6a49a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pages/docs/reference/events/send.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ To send events from within of the context of a function, use [`step.sendEvent()`

If the `ts` time is in the future, function runs will be scheduled to start at the given time. This has the same effect as running `await step.sleepUntil(event.ts)` at
the start of the function.

Note: This does not apply to functions waiting for events. Functions waiting for events will immediately resume, regardless of the timestamp.
</Property>
<Property name="v" type="string">
A version identifier for a particular event payload. e.g. `"2023-04-14.1"`
Expand Down
2 changes: 2 additions & 0 deletions pages/docs/reference/python/client/send.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ Only for async/await code.
A timestamp integer representing the time (in milliseconds) at which the event occurred. Defaults to the time the Inngest receives the event.

If the `ts` time is in the future, function runs will be scheduled to start at the given time. This has the same effect as sleeping at the start of the function.

Note: This does not apply to functions waiting for events. Functions waiting for events will immediately resume, regardless of the timestamp.
</Property>
</Properties>
</Property>
Expand Down
2 changes: 2 additions & 0 deletions pages/docs/reference/python/steps/send-event.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Sends 1 or more events to the Inngest server. Returns a list of the event IDs.
A timestamp integer representing the time (in milliseconds) at which the event occurred. Defaults to the time the Inngest receives the event.

If the `ts` time is in the future, function runs will be scheduled to start at the given time. This has the same effect as sleeping at the start of the function.

Note: This does not apply to functions waiting for events. Functions waiting for events will immediately resume, regardless of the timestamp.
</Property>
</Properties>
</Property>
Expand Down

0 comments on commit 8b6a49a

Please sign in to comment.