com.hivemq.client.mqtt.mqtt3.message.unsubscribe.Mqtt3UnsubscribeBuilder 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.mqtt3.message.unsubscribe;
import com.hivemq.client.annotations.CheckReturnValue;
import com.hivemq.client.annotations.DoNotImplement;
import org.jetbrains.annotations.NotNull;
/**
* Builder for a {@link Mqtt3Unsubscribe}.
*
* @author Silvio Giebl
* @since 1.0
*/
@DoNotImplement
public interface Mqtt3UnsubscribeBuilder extends Mqtt3UnsubscribeBuilderBase {
/**
* {@link Mqtt3UnsubscribeBuilder} that is complete which means all mandatory fields are set.
*/
@DoNotImplement
interface Complete extends Mqtt3UnsubscribeBuilder, Mqtt3UnsubscribeBuilderBase {
/**
* Builds the {@link Mqtt3Unsubscribe}.
*
* @return the built {@link Mqtt3Unsubscribe}.
*/
@CheckReturnValue
@NotNull Mqtt3Unsubscribe build();
}
/**
* {@link Mqtt3UnsubscribeBuilder} that provides additional methods for the first Topic Filter.
*/
@DoNotImplement
interface Start
extends Mqtt3UnsubscribeBuilder, Mqtt3UnsubscribeBuilderBase.Start {}
/**
* Builder for a {@link Mqtt3Unsubscribe} that is applied to a parent.
*
* @param the type of the result when the built {@link Mqtt3Unsubscribe} is applied to the parent.
*/
@DoNotImplement
interface Nested
extends Mqtt3UnsubscribeBuilderBase> {
/**
* {@link Nested} that is complete which means all mandatory fields are set.
*
* @param the type of the result when the built {@link Mqtt3Unsubscribe} is applied to the parent.
*/
@DoNotImplement
interface Complete
extends Nested
, Mqtt3UnsubscribeBuilderBase> {
/**
* Builds the {@link Mqtt3Unsubscribe} and applies it to the parent.
*
* @return the result when the built {@link Mqtt3Unsubscribe} is applied to the parent.
*/
@NotNull P applyUnsubscribe();
}
/**
* {@link Nested} that provides additional methods for the first Topic Filter.
*
* @param the type of the result when the built {@link Mqtt3Unsubscribe} is applied to the parent.
*/
@DoNotImplement
interface Start
extends Nested
, Mqtt3UnsubscribeBuilderBase.Start> {}
}
/**
* Builder for a {@link Mqtt3Unsubscribe} that is applied to a parent {@link com.hivemq.client.mqtt.mqtt3.Mqtt3Client}
* which then sends the Unsubscribe message.
*
* @param the type of the result when the built {@link Mqtt3Unsubscribe} is sent by the parent.
*/
@DoNotImplement
interface Send
extends Mqtt3UnsubscribeBuilderBase> {
/**
* {@link Send} that is complete which means all mandatory fields are set.
*
* @param the type of the result when the built {@link Mqtt3Unsubscribe} is sent by the parent.
*/
@DoNotImplement
interface Complete
extends Send
, Mqtt3UnsubscribeBuilderBase> {
/**
* Builds the {@link Mqtt3Unsubscribe} and applies it to the parent which then sends the Unsubscribe
* message.
*
* @return the result when the built {@link Mqtt3Unsubscribe} is sent by the parent.
*/
@NotNull P send();
}
/**
* {@link Send} that provides additional methods for the first Topic Filter.
*
* @param the type of the result when the built {@link Mqtt3Unsubscribe} is sent by the parent.
*/
@DoNotImplement
interface Start
extends Send
, Mqtt3UnsubscribeBuilderBase.Start> {}
}
/**
* Builder for a {@link Mqtt3Unsubscribe} that is applied to a parent {@link com.hivemq.client.mqtt.mqtt3.Mqtt3Client}
* which then sends the Unsubscribe message without returning a result.
*/
@DoNotImplement
interface SendVoid extends Mqtt3UnsubscribeBuilderBase {
/**
* {@link SendVoid} that is complete which means all mandatory fields are set.
*/
@DoNotImplement
interface Complete extends SendVoid, Mqtt3UnsubscribeBuilderBase {
/**
* Builds the {@link Mqtt3Unsubscribe} and applies it to the parent which then sends the Unsubscribe message
* without returning a result.
*/
void send();
}
/**
* {@link SendVoid} that provides additional methods for the first Topic Filter.
*/
@DoNotImplement
interface Start extends SendVoid, Mqtt3UnsubscribeBuilderBase.Start {}
}
}