com.hivemq.client.mqtt.mqtt5.Mqtt5Client Maven / Gradle / Ivy
Show all versions of hivemq-mqtt-client Show documentation
/*
* Copyright 2018-present HiveMQ and the HiveMQ Community
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hivemq.client.mqtt.mqtt5;
import com.hivemq.client.annotations.CheckReturnValue;
import com.hivemq.client.annotations.DoNotImplement;
import com.hivemq.client.internal.mqtt.MqttRxClientBuilder;
import com.hivemq.client.mqtt.MqttClient;
import org.jetbrains.annotations.NotNull;
/**
* MQTT client according to the MQTT 5.0 specification.
*
* @author Silvio Giebl
* @since 1.0
*/
@DoNotImplement
public interface Mqtt5Client extends MqttClient {
/**
* Creates a builder for an MQTT 5 client.
*
* @return the created builder for a MQTT 5 client.
*/
static @NotNull Mqtt5ClientBuilder builder() {
return new MqttRxClientBuilder();
}
@Override
@NotNull Mqtt5ClientConfig getConfig();
/**
* Turns the API of this client into a reactive API.
*
* The reactive API can be used simultaneously with the other APIs.
*
* @return a reactive API for this client.
*/
@CheckReturnValue
@NotNull Mqtt5RxClient toRx();
/**
* Turns the API of this client into a asynchronous API based on futures and callbacks.
*
* The asynchronous API can be used simultaneously with the other APIs.
*
* @return a asynchronous API for this client.
*/
@CheckReturnValue
@NotNull Mqtt5AsyncClient toAsync();
/**
* Turns the API of this client into a blocking API.
*
* The blocking API can be used simultaneously with the other APIs.
*
* @return a blocking API for this client.
*/
@CheckReturnValue
@NotNull Mqtt5BlockingClient toBlocking();
}