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

io.reacted.streams.messages.UnsubscriptionRequest Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
/*
 * 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 io.reacted.core.reactorsystem.ReActorRef;

import java.io.Serializable;

public class UnsubscriptionRequest implements Serializable {
    private final ReActorRef subscriptionBackpressuringManager;
    public UnsubscriptionRequest(ReActorRef subscriptionBackpressuringManager) {
        this.subscriptionBackpressuringManager = subscriptionBackpressuringManager;
    }
    public ReActorRef getSubscriptionBackpressuringManager() {
        return subscriptionBackpressuringManager;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy