1 25 26 package org.objectweb.easybeans.component.smartclient.message; 27 28 import java.nio.ByteBuffer ; 29 30 34 public class ChannelAttachment { 35 36 39 private static final int DEFAULT_SIZE = 1024; 40 41 44 private ByteBuffer byteBuffer = ByteBuffer.allocate(DEFAULT_SIZE); 45 46 47 51 public ByteBuffer getByteBuffer() { 52 return byteBuffer; 53 } 54 } 55 | Popular Tags |