
org.logstash.beats.Ack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package org.logstash.beats;
public class Ack {
private final byte protocol;
private final int sequence;
public Ack(byte protocol, int sequence) {
this.protocol = protocol;
this.sequence = sequence;
}
public byte getProtocol() {
return protocol;
}
public int getSequence() {
return sequence;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy