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

zmq.msg.MsgAllocatorHeap Maven / Gradle / Ivy

The newest version!
package zmq.msg;

import zmq.Msg;

public class MsgAllocatorHeap implements MsgAllocator
{
    @Override
    public Msg allocate(int size)
    {
        return new Msg(size);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy