Class ByteBufferFactory
java.lang.Object
com.sun.xml.ws.transport.tcp.util.ByteBufferFactory
Class was copied from GlassFish Grizzly sources to be available
also for client side and don't require GlassFish to be installed
Factory class used to create views of a
ByteBuffer.
The ByteBuffer can by direct or not.- Author:
- Jean-Francois Arcand
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intThe default capacity of theByteBufferfrom which views will be created.static intThe default capacity of the default view of aByteBuffer -
Method Summary
Modifier and TypeMethodDescriptionstatic ByteBufferallocateView(boolean direct) Return a directByteBufferview using the default size.static ByteBufferallocateView(int size, boolean direct) Return a directByteBufferview
-
Field Details
-
defaultCapacity
public static int defaultCapacityThe default capacity of the default view of aByteBuffer -
capacity
public static int capacityThe default capacity of theByteBufferfrom which views will be created.
-
-
Method Details
-
allocateView
Return a directByteBufferview- Parameters:
size- the Size of theByteBuffer
-
allocateView
Return a directByteBufferview using the default size.
-