com.hivemq.client.mqtt.mqtt3.message.publish.Mqtt3WillPublishBuilder 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.publish;
import com.hivemq.client.annotations.CheckReturnValue;
import com.hivemq.client.annotations.DoNotImplement;
import org.jetbrains.annotations.NotNull;
/**
* Builder for a {@link Mqtt3Publish} used as a Will Publish.
*
* @author Silvio Giebl
* @since 1.0
*/
@DoNotImplement
public interface Mqtt3WillPublishBuilder extends Mqtt3PublishBuilderBase {
/**
* {@link Mqtt3WillPublishBuilder} that is complete which means all mandatory fields are set.
*/
@DoNotImplement
interface Complete
extends Mqtt3WillPublishBuilder, Mqtt3PublishBuilderBase.Complete {
/**
* Builds the {@link Mqtt3Publish} as a Will Publish.
*
* @return the built {@link Mqtt3Publish}.
*/
@CheckReturnValue
@NotNull Mqtt3Publish build();
}
/**
* Builder for a {@link Mqtt3Publish} that is applied to a parent as a Will Publish.
*
* @param the type of the result when the built {@link Mqtt3Publish} is applied to the parent.
*/
@DoNotImplement
interface Nested
extends Mqtt3PublishBuilderBase> {
/**
* {@link Nested} that is complete which means all mandatory fields are set.
*
* @param the type of the result when the built {@link Mqtt3Publish} is applied to the parent.
*/
@DoNotImplement
interface Complete
extends Nested
, Mqtt3PublishBuilderBase.Complete> {
/**
* Builds the {@link Mqtt3Publish} and applies it to the parent as a Will Publish.
*
* @return the result when the built {@link Mqtt3Publish} is applied to the parent.
*/
@NotNull P applyWillPublish();
}
}
}