If I understand it correctly (please correct me if I'm wrong) you're suggesting adding extra route t

If I understand it correctly (please correct me if I'm wrong) you're suggesting adding extra route to my worker, lets call them /process/a, /process/b and /process/c and somehow call them from MainDurableObject.

I know how to call other DOs from MainDurableObject, but I don't know how to call my main worker.
Right now I have one worker with /processing/trigger endpoint inside which I call MainDurableObject and it does the whole processing. The processing can be split into 3 separate stages that could be run in paralel, which is why I'd like to have 3 extra workers that I could call using Promise.all
Was this page helpful?