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

org.jresearch.gavka.rest.data.PartitionInfo Maven / Gradle / Ivy

There is a newer version: 1.0.65
Show newest version
package org.jresearch.gavka.rest.data;

import org.immutables.value.Value;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

@Value.Immutable
@Value.Style(builder = "new") // builder has to have constructor
@JsonDeserialize(builder = ImmutablePartitionInfo.Builder.class)
public interface PartitionInfo {

	long partitionNumber();

	long startOffset();

	long endOffset();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy