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

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

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

public class RemovePreferredPartitionRequest extends AbstractMessage {

    public final int partitionId;

    public RemovePreferredPartitionRequest(ReqId reqId, int partitionId) {
        super(reqId);
        this.partitionId = partitionId;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy