io.reacted.streams.messages.SubscriptionReply Maven / Gradle / Ivy
/*
* Copyright (c) 2020 , [ [email protected] ]
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
package io.reacted.streams.messages;
import java.io.Serializable;
public class SubscriptionReply implements Serializable {
private final boolean success;
public SubscriptionReply(boolean isSuccess) {
this.success = isSuccess;
}
public boolean isSuccess() { return success; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy