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

org.eclipse.ditto.connectivity.service.messaging.mqtt.hivemq.subscribing.SubscribeSuccess Maven / Gradle / Ivy

/*
 * Copyright (c) 2022 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package org.eclipse.ditto.connectivity.service.messaging.mqtt.hivemq.subscribing;

import java.util.Objects;

import javax.annotation.Nullable;

import org.eclipse.ditto.base.model.common.ConditionChecker;
import org.eclipse.ditto.connectivity.service.messaging.mqtt.hivemq.client.MqttSubscribeException;
import org.eclipse.ditto.connectivity.service.messaging.mqtt.hivemq.message.publish.GenericMqttPublish;
import org.eclipse.ditto.connectivity.service.messaging.mqtt.hivemq.message.subscribe.GenericMqttSubscribe;

import org.apache.pekko.NotUsed;
import org.apache.pekko.stream.javadsl.Source;

/**
 * Represents the successful subscription of an MQTT client to one or more
 * MQTT topics via one particular Subscribe message ({@link GenericMqttSubscribe}).
 */
final class SubscribeSuccess extends SubscribeResult {

    private final Source mqttPublishSource;

    private SubscribeSuccess(final org.eclipse.ditto.connectivity.model.Source connectionSource,
            final Source mqttPublishSource) {

        super(connectionSource);
        this.mqttPublishSource = mqttPublishSource;
    }

    /**
     * Returns a new instance of {@code SubscribeSuccess} for the specified arguments.
     *
     * @param connectionSource the connection source which is associated with the returned subscribe success.
     * @param mqttPublishSource stream of received MQTT Publish messages for the subscribed topics.
     * @return the instance.
     * @throws NullPointerException if any argument is {@code null}.
     */
    static SubscribeSuccess newInstance(final org.eclipse.ditto.connectivity.model.Source connectionSource,
            final Source mqttPublishSource) {

        return new SubscribeSuccess(connectionSource,
                ConditionChecker.checkNotNull(mqttPublishSource, "mqttPublishSource"));
    }

    @Override
    public boolean isSuccess() {
        return true;
    }

    @Override
    public org.apache.pekko.stream.javadsl.Source getMqttPublishSourceOrThrow() {
        return mqttPublishSource;
    }

    /**
     * Throws always an IllegalStateException.
     */
    @Override
    public MqttSubscribeException getErrorOrThrow() {
        throw new IllegalStateException("Success cannot provide an error.");
    }

    @Override
    public boolean equals(@Nullable final Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        if (!super.equals(o)) {
            return false;
        }
        final var that = (SubscribeSuccess) o;
        return Objects.equals(mqttPublishSource, that.mqttPublishSource);
    }

    @Override
    public int hashCode() {
        return Objects.hash(super.hashCode(), mqttPublishSource);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy