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

org.logstash.beats.Ack Maven / Gradle / Ivy

There is a newer version: 4.36
Show newest version
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