@@ -230,24 +230,38 @@ type Client interface {
230
230
ImplActorClientStub (actorClientStub actor.Client , opt ... config.Option )
231
231
232
232
// StartWorkflowBeta1 starts a workflow.
233
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
234
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
233
235
StartWorkflowBeta1 (ctx context.Context , req * StartWorkflowRequest ) (* StartWorkflowResponse , error )
234
236
235
237
// GetWorkflowBeta1 gets a workflow.
238
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
239
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
236
240
GetWorkflowBeta1 (ctx context.Context , req * GetWorkflowRequest ) (* GetWorkflowResponse , error )
237
241
238
242
// PurgeWorkflowBeta1 purges a workflow.
243
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
244
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
239
245
PurgeWorkflowBeta1 (ctx context.Context , req * PurgeWorkflowRequest ) error
240
246
241
247
// TerminateWorkflowBeta1 terminates a workflow.
248
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
249
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
242
250
TerminateWorkflowBeta1 (ctx context.Context , req * TerminateWorkflowRequest ) error
243
251
244
252
// PauseWorkflowBeta1 pauses a workflow.
253
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
254
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
245
255
PauseWorkflowBeta1 (ctx context.Context , req * PauseWorkflowRequest ) error
246
256
247
257
// ResumeWorkflowBeta1 resumes a workflow.
258
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
259
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
248
260
ResumeWorkflowBeta1 (ctx context.Context , req * ResumeWorkflowRequest ) error
249
261
250
262
// RaiseEventWorkflowBeta1 raises an event for a workflow.
263
+ // Deprecated: Please use the workflow client (github.com/dapr/go-sdk/workflow).
264
+ // These methods for managing workflows are no longer supported and will be removed in the 1.16 release.
251
265
RaiseEventWorkflowBeta1 (ctx context.Context , req * RaiseEventWorkflowRequest ) error
252
266
253
267
// ScheduleJobAlpha1 creates and schedules a job.
0 commit comments