All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zmq.MsgAllocator Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package zmq;

public interface MsgAllocator
{
   /**
    * Allocate a Msg based on users needs (e.g., using DirectByteBuffer with additional space in
    * front for header information).
    *
    * @param size The size of the Msg.
    * @return Msg The ByteBuffer Msg to meet space requirements
    */
   Msg allocate(int size);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy