Hello,
I use a CumulativeProtocolDecoder. In the doDecode method I have:

...
contentBuffer = ByteBuffer.allocate(contentLength);
contentBuffer.put(contentBytes);
contentBuffer.flip();
Message myMessage = new Message(contentBuffer);
out.write(myMessage);


My question is do I have to call the ByteBuffer's release method?

Thanks,
Zohar.

Reply via email to