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

com.wepay.waltz.common.message.FlushResponse Maven / Gradle / Ivy

There is a newer version: 0.13.2
Show newest version
package com.wepay.waltz.common.message;

public class FlushResponse extends AbstractMessage {

    public final long transactionId;

    public FlushResponse(ReqId reqId, long transactionId) {
        super(reqId);
        this.transactionId = transactionId;
    }

    @Override
    public byte type() {
        return MessageType.FLUSH_RESPONSE;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy