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

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

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

public class RemovePreferredPartitionResponse extends AbstractMessage {

    public final Boolean result;
    public RemovePreferredPartitionResponse(ReqId reqId, boolean result) {
        super(reqId);
        this.result = result;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy