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

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

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

public class MountResponse extends FeedSuspended {

    public final boolean partitionReady;

    public MountResponse(ReqId reqId, boolean partitionReady) {
        super(reqId);
        this.partitionReady = partitionReady;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy