I'm suggesting a minor improvement for the following text:
Publications with a different channel and stream id are completely independent from each other and operate in parallel.
My suggestion:
Publications with a different channel and stream id are completely independent from each other and operate concurrently.
Parallel should be used when they are happening at the same time, which isn't required. Concurrent means that they are not ordered and may or may not be processed at the same time.
On the following wiki page:
https://github.com/real-logic/aeron/wiki/Client-Concurrency-Model
I'm suggesting a minor improvement for the following text:
My suggestion:
Parallel should be used when they are happening at the same time, which isn't required. Concurrent means that they are not ordered and may or may not be processed at the same time.