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

io.leoplatform.sdk.payload.FileSegment Maven / Gradle / Ivy

The newest version!
package io.leoplatform.sdk.payload;

public class FileSegment {
    private final StorageEventOffset offset;
    private final byte[] segment;

    public FileSegment(StorageEventOffset offset, byte[] segment) {
        this.offset = offset;
        this.segment = segment;
    }

    public StorageEventOffset getOffset() {
        return offset;
    }

    public byte[] getSegment() {
        return segment;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy