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

com.hivemq.client.mqtt.mqtt5.message.publish.Mqtt5PublishBuilderBase Maven / Gradle / Ivy

Go to download

HiveMQ MQTT Client is an MQTT 5.0 and MQTT 3.1.1 compatible and feature-rich high-performance Java client library with different API flavours and backpressure support

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

import com.hivemq.client.annotations.CheckReturnValue;
import com.hivemq.client.annotations.DoNotImplement;
import com.hivemq.client.mqtt.datatypes.MqttQos;
import com.hivemq.client.mqtt.datatypes.MqttTopic;
import com.hivemq.client.mqtt.datatypes.MqttTopicBuilder;
import com.hivemq.client.mqtt.datatypes.MqttUtf8String;
import com.hivemq.client.mqtt.mqtt5.datatypes.Mqtt5UserProperties;
import com.hivemq.client.mqtt.mqtt5.datatypes.Mqtt5UserPropertiesBuilder;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.nio.ByteBuffer;

/**
 * Builder base for a {@link Mqtt5Publish}.
 *
 * @param  the type of the complete builder.
 * @author Bilvio Giebl
 * @since 1.0
 */
@DoNotImplement
public interface Mqtt5PublishBuilderBase> {

    /**
     * Sets the mandatory {@link Mqtt5Publish#getTopic() Topic}.
     *
     * @param topic the string representation of the Topic.
     * @return the builder that is now complete as the mandatory Topic is set.
     */
    @CheckReturnValue
    @NotNull C topic(@NotNull String topic);

    /**
     * Sets the mandatory {@link Mqtt5Publish#getTopic() Topic}.
     *
     * @param topic the Topic.
     * @return the builder that is now complete as the mandatory Topic is set.
     */
    @CheckReturnValue
    @NotNull C topic(@NotNull MqttTopic topic);

    /**
     * Fluent counterpart of {@link #topic(MqttTopic)}.
     * 

* Calling {@link MqttTopicBuilder.Nested.Complete#applyTopic()} on the returned builder has the same effect as * calling {@link #topic(MqttTopic)} with the result of {@link MqttTopicBuilder.Complete#build()}. * * @return the fluent builder for the Topic. * @see #topic(MqttTopic) */ @CheckReturnValue MqttTopicBuilder.@NotNull Nested topic(); /** * {@link Mqtt5PublishBuilderBase} that is complete which means all mandatory fields are set. * * @param the type of the complete builder. */ @DoNotImplement interface Complete> extends Mqtt5PublishBuilderBase { /** * Sets the optional {@link Mqtt5Publish#getPayload() payload}. * * @param payload the payload as byte array or null to remove any previously set payload. * @return the builder. */ @CheckReturnValue @NotNull C payload(byte @Nullable [] payload); /** * Sets the optional {@link Mqtt5Publish#getPayload() payload}. * * @param payload the payload as {@link ByteBuffer} or null to remove any previously set payload. * @return the builder. */ @CheckReturnValue @NotNull C payload(@Nullable ByteBuffer payload); /** * Sets the {@link Mqtt5Publish#getQos() QoS}. * * @param qos the QoS. * @return the builder. */ @CheckReturnValue @NotNull C qos(@NotNull MqttQos qos); /** * Sets whether the Publish message should be {@link Mqtt5Publish#isRetain() retained}. * * @param retain whether the Publish message should be retained. * @return the builder. */ @CheckReturnValue @NotNull C retain(boolean retain); /** * Sets the {@link Mqtt5Publish#getMessageExpiryInterval() message expiry interval} in seconds. *

* The value must be in the range of an unsigned int: [0, 4_294_967_295]. * * @param messageExpiryInterval the message expiry interval in seconds. * @return the builder. */ @CheckReturnValue @NotNull C messageExpiryInterval(long messageExpiryInterval); /** * Disables the {@link Mqtt5Publish#getMessageExpiryInterval() message expiry}. * * @return the builder. */ @CheckReturnValue @NotNull C noMessageExpiry(); /** * Sets the optional {@link Mqtt5Publish#getPayloadFormatIndicator() payload format indicator}. * * @param payloadFormatIndicator the payload format indicator or null to remove any previously set * payload format indicator. * @return the builder. */ @CheckReturnValue @NotNull C payloadFormatIndicator(@Nullable Mqtt5PayloadFormatIndicator payloadFormatIndicator); /** * Sets the optional {@link Mqtt5Publish#getContentType() content type}. * * @param contentType the content type or null to remove any previously set content type. * @return the builder. */ @CheckReturnValue @NotNull C contentType(@Nullable String contentType); /** * Sets the optional {@link Mqtt5Publish#getContentType() content type}. * * @param contentType the content type or null to remove any previously set content type. * @return the builder. */ @CheckReturnValue @NotNull C contentType(@Nullable MqttUtf8String contentType); /** * Sets the optional {@link Mqtt5Publish#getResponseTopic() response topic}. * * @param responseTopic the response topic or null to remove any previously set response topic. * @return the builder. */ @CheckReturnValue @NotNull C responseTopic(@Nullable String responseTopic); /** * Sets the optional {@link Mqtt5Publish#getResponseTopic() response topic}. * * @param responseTopic the response topic or null to remove any previously set response topic. * @return the builder. */ @CheckReturnValue @NotNull C responseTopic(@Nullable MqttTopic responseTopic); /** * Fluent counterpart of {@link #responseTopic(MqttTopic)}. *

* Calling {@link MqttTopicBuilder.Nested.Complete#applyTopic()} on the returned builder has the same effect as * calling {@link #responseTopic(MqttTopic)} with the result of {@link MqttTopicBuilder.Complete#build()}. * * @return the fluent builder for the response topic. * @see #responseTopic(MqttTopic) */ @CheckReturnValue MqttTopicBuilder.@NotNull Nested responseTopic(); /** * Sets the optional {@link Mqtt5Publish#getCorrelationData() correlation data}. * * @param correlationData the correlation data as byte array or null to remove any previously set * correlation data. * @return the builder. */ @CheckReturnValue @NotNull C correlationData(byte @Nullable [] correlationData); /** * Sets the optional {@link Mqtt5Publish#getCorrelationData() correlation data}. * * @param correlationData the correlation data as {@link ByteBuffer} or null to remove any * previously set correlation data. * @return the builder. */ @CheckReturnValue @NotNull C correlationData(@Nullable ByteBuffer correlationData); /** * Sets the {@link Mqtt5Publish#getUserProperties() User Properties}. * * @param userProperties the User Properties. * @return the builder. */ @CheckReturnValue @NotNull C userProperties(@NotNull Mqtt5UserProperties userProperties); /** * Fluent counterpart of {@link #userProperties(Mqtt5UserProperties)}. *

* Calling {@link Mqtt5UserPropertiesBuilder.Nested#applyUserProperties()} on the returned builder has the * effect of {@link Mqtt5UserProperties#extend() extending} the current User Properties. * * @return the fluent builder for the User Properties. * @see #userProperties(Mqtt5UserProperties) */ @CheckReturnValue Mqtt5UserPropertiesBuilder.@NotNull Nested userProperties(); } /** * Builder base for a {@link Mqtt5WillPublish}. * * @param the type of the complete builder. */ @DoNotImplement interface WillBase> extends Mqtt5PublishBuilderBase { /** * {@link WillBase} that is complete which means all mandatory fields are set. * * @param the type of the complete builder. */ @DoNotImplement interface Complete> extends Mqtt5PublishBuilderBase.Complete, WillBase { /** * Sets the {@link Mqtt5WillPublish#getDelayInterval() delay interval} in seconds. *

* The value must be in the range of an unsigned int: [0, 4_294_967_295]. * * @param delayInterval the delay interval in seconds. * @return the builder. */ @CheckReturnValue @NotNull C delayInterval(long delayInterval); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy