Job A runs, does some calculations, part of which is calculating some value n.
Once it’s done, I allocate a native hash set with capacity n, pass it in Job B and schedule Job B.
Is there some way to do this using job dependencies? Currently I have to wait for Job A to finish, and I can’t see a way of getting around this without using async/threading, which feels like a shame.