com.wepay.waltz.common.message.RemovePreferredPartitionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waltz-common Show documentation
Show all versions of waltz-common Show documentation
Waltz is a distributed/replicated write ahead log for transactions.
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;
}
}