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
* update nexus guides
Signed-off-by: Phil Prasek <prasek@gmail.com>
* Update temporal-nexus.mdx
Fixing a couple of bad links
---------
Signed-off-by: Phil Prasek <prasek@gmail.com>
Co-authored-by: Brian MacDonald <brian.macdonald@temporal.io>
The [Temporal Nexus](/develop/python/nexus) feature guide shows how to use Temporal Nexus to connect durable executions within and across Namespaces using a Nexus Endpoint, a Nexus Service contract, and Nexus Operations.
141
+
142
+
-[Create a Nexus Endpoint to route requests from caller to handler](/develop/python/nexus#create-nexus-endpoint)
143
+
-[Define the Nexus Service contract](/develop/python/nexus#define-nexus-service-contract)
144
+
-[Develop a Nexus Service and Operation handlers](/develop/python/nexus#develop-nexus-service-operation-handlers)
145
+
-[Develop a caller Workflow that uses a Nexus Service](/develop/python/nexus#develop-caller-workflow-nexus-service)
146
+
-[Make Nexus calls across Namespaces with a dev Server](/develop/python/nexus#register-the-caller-workflow-in-a-worker-and-start-the-caller-workflow)
147
+
-[Make Nexus calls across Namespaces in Temporal Cloud](/develop/python/nexus#nexus-calls-across-namespaces-temporal-cloud)
148
+
138
149
## [Durable Timers](/develop/python/timers)
139
150
140
151
Use Timers to make a Workflow Execution pause or "sleep" for seconds, minutes, days, months, or years.
Copy file name to clipboardExpand all lines: docs/develop/python/temporal-nexus.mdx
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -180,12 +180,11 @@ class MyNexusServiceHandler:
180
180
181
181
Workflow IDs should typically be business-meaningful IDs and are used to dedupe Workflow starts. In general, the ID should be passed in the Operation input as part of the Nexus Service contract.
The [Temporal Nexus](/develop/typescript/nexus) feature guide shows how to use Temporal Nexus to connect durable executions within and across Namespaces using a Nexus Endpoint, a Nexus Service contract, and Nexus Operations.
128
+
129
+
-[Create a Nexus Endpoint to route requests from caller to handler](/develop/typescript/nexus#create-nexus-endpoint)
130
+
-[Define the Nexus Service contract](/develop/typescript/nexus#define-nexus-service-contract)
131
+
-[Develop a Nexus Service and Operation handlers](/develop/typescript/nexus#develop-nexus-service-operation-handlers)
132
+
-[Develop a caller Workflow that uses a Nexus Service](/develop/typescript/nexus#develop-caller-workflow-nexus-service)
133
+
-[Make Nexus calls across Namespaces with a dev Server](/develop/typescript/nexus#register-the-caller-workflow-in-a-worker-and-start-the-caller-workflow)
134
+
-[Make Nexus calls across Namespaces in Temporal Cloud](/develop/typescript/nexus#nexus-calls-across-namespaces-temporal-cloud)
135
+
125
136
## [Durable Timers](/develop/typescript/timers)
126
137
127
138
Use Timers to make a Workflow Execution pause or "sleep" for seconds, minutes, days, months, or years.
Copy file name to clipboardExpand all lines: docs/develop/typescript/temporal-nexus.mdx
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ This page shows how to do the following:
41
41
42
42
:::note
43
43
44
-
This documentation uses source code derived from the [TypeScript Nexus sample](https://github.com/temporalio/samples-typescript/tree/main/hello_nexus).
44
+
This documentation uses source code derived from the [TypeScript Nexus sample](https://github.com/temporalio/samples-typescript/tree/main/nexus-hello).
0 commit comments