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

zmq.msg.MsgAllocatorDirect Maven / Gradle / Ivy

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

import java.nio.ByteBuffer;

import zmq.Msg;

public class MsgAllocatorDirect implements MsgAllocator
{
    @Override
    public Msg allocate(int size)
    {
        return new Msg(ByteBuffer.allocateDirect(size));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy