Spawning Children Activities

Is it possible for an activity to spawn another child activity similar to how a workflow can spawn a child workflow? I did not find anything in the docs but I might have missed it. Thanks!

Not sure this case applies to activities. Activities can contain any custom code, and you can use just programming language to call a function defined in another activity for example.

You can use the temporal client api inside activities, so you can start a new workflow exec, signal, query, even create new workers, etc just like what you can do in your client (starter) code as well.

1 Like