Hi! I have a job that generates an arbitrary amount of data into a NativeStream, and I have a second job which then reads this stream into a NativeArray. I can do this without scheduling the second job and just waiting for the first one to finish, but I'd rather a more elegant solution.
I need to setup the NativeArray with the count of the NativeStream after the first job completes and before the second job runs. Is this not possible if I schedule the second job after the first?