Execute method.
Parameters
context.Context
required
The task execution context.
string
required
The display label to set for the current task.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
func (t *ProcessScene) Execute(ctx context.Context) error {
if err := workflows.SetTaskDisplay(ctx, "Process scene " + t.SceneID); err != nil {
return err
}
return nil
}
func SetTaskDisplay(ctx context.Context, display string) error
Execute method.
func (t *ProcessScene) Execute(ctx context.Context) error {
if err := workflows.SetTaskDisplay(ctx, "Process scene " + t.SceneID); err != nil {
return err
}
return nil
}
Was this page helpful?