Skip to content

Commit bdafad3

Browse files
committed
remove deprecation
1 parent 974d755 commit bdafad3

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/durableorchestrationcontext.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,6 @@ export class DurableOrchestrationContext {
203203
* function.
204204
* @returns A Durable Task that completes when the called activity
205205
* function completes or fails.
206-
*
207-
* @deprecated this version of `callActivity()` is deprecated. Pass an object
208-
* returned from `df.app.activity()` as the first argument instead.
209206
*/
210207
public callActivity(name: string, input?: unknown): Task;
211208

@@ -235,9 +232,6 @@ export class DurableOrchestrationContext {
235232
* @param retryOptions The retry options for the activity function.
236233
* @param input The JSON-serializable input to pass to the activity
237234
* function.
238-
*
239-
* @deprecated this version of `callActivity()` is deprecated. Pass an object
240-
* returned from `df.app.activity()` as the first argument instead.
241235
*/
242236
public callActivityWithRetry(name: string, retryOptions: RetryOptions, input?: unknown): Task;
243237

@@ -303,9 +297,6 @@ export class DurableOrchestrationContext {
303297
* @param instanceId A unique ID to use for the sub-orchestration instance.
304298
* If `instanceId` is not specified, the extension will generate an id in
305299
* the format `<calling orchestrator instance ID>:<#>`
306-
*
307-
* @deprecated this version of `callSubOrchestrator()` is deprecated. Pass an object
308-
* returned from `df.app.orchestration()` as the first argument instead.
309300
*/
310301
public callSubOrchestrator(name: string, input?: unknown, instanceId?: string): Task;
311302

@@ -351,9 +342,6 @@ export class DurableOrchestrationContext {
351342
* @param input The JSON-serializable input to pass to the orchestrator
352343
* function.
353344
* @param instanceId A unique ID to use for the sub-orchestration instance.
354-
*
355-
* @deprecated this version of `callSubOrchestratorWithRetry()` is deprecated. Pass an object
356-
* returned from `df.app.orchestration()` as the first argument instead.
357345
*/
358346
public callSubOrchestratorWithRetry(
359347
name: string,

0 commit comments

Comments
 (0)