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

com.hivemq.client.mqtt.MqttClientTransportConfigBuilderBase 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;

import com.hivemq.client.annotations.CheckReturnValue;
import com.hivemq.client.annotations.DoNotImplement;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.util.concurrent.TimeUnit;

/**
 * Builder base for a {@link MqttClientTransportConfig}.
 *
 * @param  the type of the builder.
 * @author Silvio Giebl
 * @since 1.1
 */
@DoNotImplement
public interface MqttClientTransportConfigBuilderBase> {

    /**
     * Sets the {@link MqttClientTransportConfig#getServerAddress() server address} to connect to.
     *
     * @param address the server address.
     * @return the builder.
     */
    @CheckReturnValue
    @NotNull B serverAddress(@NotNull InetSocketAddress address);

    /**
     * Sets the server host to connect to.
     *
     * @param host the server host.
     * @return the builder.
     */
    @CheckReturnValue
    @NotNull B serverHost(@NotNull String host);

    /**
     * Sets the server host to connect to.
     *
     * @param host the server host.
     * @return the builder.
     */
    @CheckReturnValue
    @NotNull B serverHost(@NotNull InetAddress host);

    /**
     * Sets the server port to connect to.
     *
     * @param port the server port.
     * @return the builder.
     */
    @CheckReturnValue
    @NotNull B serverPort(int port);

    /**
     * Sets the optional {@link MqttClientTransportConfig#getLocalAddress() local bind address}.
     * 

* The address must be resolved. * * @param address the local bind address. * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B localAddress(@Nullable InetSocketAddress address); /** * Sets the optional local bind address. *

* The address must be resolvable. * * @param address the local bind address. * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B localAddress(@Nullable String address); /** * Sets the optional local bind address. * * @param address the local bind address * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B localAddress(@Nullable InetAddress address); /** * Sets the optional local bind port. * * @param port the local bind port. * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B localPort(int port); /** * Sets the {@link MqttClientTransportConfig#getSslConfig() secure transport configuration} to the default * configuration. *

* This means that the systems default trust store, ciphers and protocols are used. * * @return the builder. */ @CheckReturnValue @NotNull B sslWithDefaultConfig(); /** * Sets the optional {@link MqttClientTransportConfig#getSslConfig() secure transport configuration}. * * @param sslConfig the secure transport configuration or null to remove any previously set secure * transport configuration. * @return the builder. */ @CheckReturnValue @NotNull B sslConfig(@Nullable MqttClientSslConfig sslConfig); /** * Fluent counterpart of {@link #sslConfig(MqttClientSslConfig)}. *

* Calling {@link MqttClientSslConfigBuilder.Nested#applySslConfig()} on the returned builder has the effect of * extending the current secure transport configuration. * * @return the fluent builder for the secure transport configuration. * @see #sslConfig(MqttClientSslConfig) */ @CheckReturnValue MqttClientSslConfigBuilder.@NotNull Nested sslConfig(); /** * Sets the {@link MqttClientTransportConfig#getWebSocketConfig() WebSocket transport configuration} to the default * configuration. * * @return the builder. */ @CheckReturnValue @NotNull B webSocketWithDefaultConfig(); /** * Sets the optional {@link MqttClientTransportConfig#getWebSocketConfig() WebSocket transport configuration}. * * @param webSocketConfig the WebSocket transport configuration or null to remove any previously set * WebSocket transport configuration. * @return the builder. */ @CheckReturnValue @NotNull B webSocketConfig(@Nullable MqttWebSocketConfig webSocketConfig); /** * Fluent counterpart of {@link #webSocketConfig(MqttWebSocketConfig)}. *

* Calling {@link MqttWebSocketConfigBuilder.Nested#applyWebSocketConfig()} on the returned builder has the effect * of extending the current WebSocket transport configuration. * * @return the fluent builder for the WebSocket configuration. * @see #webSocketConfig(MqttWebSocketConfig) */ @CheckReturnValue MqttWebSocketConfigBuilder.@NotNull Nested webSocketConfig(); /** * Sets the optional {@link MqttClientTransportConfig#getProxyConfig() proxy configuration}. * * @param proxyConfig the proxy configuration or null to remove any previously set proxy * configuration. * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B proxyConfig(@Nullable MqttProxyConfig proxyConfig); /** * Fluent counterpart of {@link #proxyConfig(MqttProxyConfig)}. *

* Calling {@link MqttProxyConfigBuilder.Nested#applyProxyConfig()} on the returned builder has the effect of * extending the current proxy configuration. * * @return the fluent builder for the proxy configuration. * @see #proxyConfig(MqttProxyConfig) * @since 1.2 */ @CheckReturnValue MqttProxyConfigBuilder.@NotNull Nested proxyConfig(); /** * Sets the {@link MqttClientTransportConfig#getSocketConnectTimeoutMs() timeout for connecting the socket to the * server}. *

* The timeout in milliseconds must be in the range: [0, {@link Integer#MAX_VALUE}]. * * @param timeout the timeout for connecting the socket to the server or 0 to disable the timeout. * @param timeUnit the time unit of the given timeout (this timeout only supports millisecond precision). * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B socketConnectTimeout(long timeout, @NotNull TimeUnit timeUnit); /** * Sets the {@link MqttClientTransportConfig#getMqttConnectTimeoutMs() timeout between sending the Connect and * receiving the ConnAck message}. *

* The timeout in milliseconds must be in the range: [0, {@link Integer#MAX_VALUE}]. * * @param timeout the timeout between sending the Connect and receiving the ConnAck message or 0 to * disable the timeout. * @param timeUnit the time unit of the given timeout (this timeout only supports millisecond precision). * @return the builder. * @since 1.2 */ @CheckReturnValue @NotNull B mqttConnectTimeout(long timeout, @NotNull TimeUnit timeUnit); }