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: 9999.0
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 - 2024 Weber Informatics LLC | Privacy Policy