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

com.github.loki4j.client.batch.BinaryBatch Maven / Gradle / Ivy

package com.github.loki4j.client.batch;

import java.nio.ByteBuffer;

public class BinaryBatch {
    
    public long batchId;

    public int sizeItems;

    public int sizeBytes;

    public ByteBuffer data;

    BinaryBatch() { }

    @Override
    public String toString() {
        return String.format(
            "#%x (%,d bytes)", batchId, sizeBytes);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy