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

io.descoped.rawdata.avro.AvroRawdataCursor Maven / Gradle / Ivy

package io.descoped.rawdata.avro;

import de.huxhorn.sulky.ulid.ULID;
import io.descoped.rawdata.api.RawdataCursor;

class AvroRawdataCursor implements RawdataCursor {

    final ULID.Value ulid;
    final boolean inclusive;

    AvroRawdataCursor(ULID.Value ulid, boolean inclusive) {
        this.ulid = ulid;
        this.inclusive = inclusive;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy