Package org.capnproto

Interface Allocator

  • All Known Implementing Classes:
    DefaultAllocator

    public interface Allocator
    An object that allocates memory for a Cap'n Proto message as it is being built.
    • Method Detail

      • allocateSegment

        ByteBuffer allocateSegment​(int minimumSize)
        Allocates a ByteBuffer to be used as a segment in a message. The returned buffer must contain at least `minimumSize` bytes, all of which MUST be set to zero.