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

org.jresearch.gavka.rest.data.GroupInfo 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 = ImmutableGroupInfo.Builder.class)
public interface GroupInfo {

	String groupId();

	int partition();

	long currentOffset();

	long lag();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy