79674205

Date: 2025-06-21 06:33:15
Score: 1
Natty:
Report link
package repositories

import (
    "context"

    "go.temporal.io/sdk/workflow" // @TODO: remove this
)

type WorkflowClient[C interface{}, T interface{}, U any] interface {
    Connection() C
    Connect() error
    ExecuteWorkflow(ctx context.Context, options T, workflow interface{}, args ...interface{}) (U, error)
    ExecuteChildWorkflow(ctx workflow.Context, workFlow interface{}, args ...interface{}) workflow.ChildWorkflowFuture
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30856387