io.fluxcapacitor.javaclient.tracking.metrics.ProcessBatchAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Default Java client library for interfacing with Flux Capacitor.
package io.fluxcapacitor.javaclient.tracking.metrics;
import io.fluxcapacitor.common.api.ClientAction;
import lombok.Value;
@Value
public class ProcessBatchAction implements ClientAction {
String client;
long timestamp = System.currentTimeMillis();
String clientId;
String consumer;
int channel;
int batchSize;
long nanosecondDuration;
}