Would this AsyncQueue have issues with multiple producers and a single consumer?
First, I know Channels exist and I would obviously use them instead.
I can't use them because I'm adding functionality to an existing Unity library that does not have access to them. I'm intending to use this internally in the library for IPC purposes between Unity Editor instances.
Will this implementation have issues with synchronization? Also will FIFO be preserved?
I think the answer is there are no issues with this, but want to confirm.
I can't use them because I'm adding functionality to an existing Unity library that does not have access to them. I'm intending to use this internally in the library for IPC purposes between Unity Editor instances.
Will this implementation have issues with synchronization? Also will FIFO be preserved?
I think the answer is there are no issues with this, but want to confirm.