Aeron ConcurrentPublication vs ExclusivePublication. Is this managing concurrency at the Object level, or at the LogBuffer level?
In Java Aeron, at the Object level, I understand that if I have multiple threads writing to a single Publication instance, it had better be a ConcurrentPublication. But what if each thread has its own ExclusivePublication instance, with all Publications writing to the same channel/streamId? Is that safe?