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

org.eclipse.ditto.connectivity.service.messaging.mqtt.hivemq.client.GenericMqttClient Maven / Gradle / Ivy

There is a newer version: 3.5.6
Show newest version
/*
 * 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.client;

import java.util.concurrent.CompletionStage;

/**
 * An MQTT client with a tailored interface.
 * It abstracts protocol version 3 and 5.
 */
public interface GenericMqttClient
        extends GenericMqttConnectableClient, GenericMqttSubscribingClient, GenericMqttPublishingClient {

    /**
     * Connects this client with the specified Connect message.
     *
     * @return a {@code CompletionStage} which
     * 
    *
  • completes normally if the ConnAck message does not contain an Error Code (connected successfully),
  • *
  • * completes exceptionally with a {@link MqttClientConnectException} if the ConnAck message contains an * Error Code or *
  • *
  • * completes exceptionally with a different exception if an error occurred before the Connect message was * sent or before the ConnAck message was received. *
  • *
*/ CompletionStage connect(); /** * Disconnects the specified role of this client. * Based on configuration this may trigger an automatic reconnect of that role. *

* It might happen, that more roles than the specified one will be disconnected, for example, if configuration * states that no separate publisher client should be used because in this case consuming and publishing is * performed by the same HiveMQ MQTT client. * * @param clientRole the role of the client to be disconnected. * @return a CompletionStage which *

    *
  • completes when the client role was successfully disconnected or
  • *
  • completes exceptionally if the client role did not disconnect gracefully
  • *
* @throws NullPointerException if {@code clientRole} is {@code null}. */ CompletionStage disconnectClientRole(ClientRole clientRole); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy