Hi, So we have a Trident Aggregator. The class as an internal buffer that it uses to aggregate messages passed to its aggregate method. Right now the buffer is a ByteBuffer which isn't thread safe.
Is there ever more than one thread calling the methods off that Aggregator? If so, I guess we'd need to put a sync block around the buffer... Thanks!
