Interface Mqtt3UnsubscribeBuilderBase.Start<C extends Mqtt3UnsubscribeBuilderBase<C>>
- Type Parameters:
C- the type of the complete builder.
- All Superinterfaces:
Mqtt3UnsubscribeBuilderBase<C>
- All Known Subinterfaces:
Mqtt3UnsubscribeBuilder.Nested.Start<P>,Mqtt3UnsubscribeBuilder.Send.Start<P>,Mqtt3UnsubscribeBuilder.SendVoid.Start,Mqtt3UnsubscribeBuilder.Start
- Enclosing interface:
Mqtt3UnsubscribeBuilderBase<C extends Mqtt3UnsubscribeBuilderBase<C>>
@DoNotImplement
public static interface Mqtt3UnsubscribeBuilderBase.Start<C extends Mqtt3UnsubscribeBuilderBase<C>>
extends Mqtt3UnsubscribeBuilderBase<C>
Mqtt3UnsubscribeBuilderBase that provides additional methods for the first Topic Filter.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.hivemq.client.mqtt.mqtt3.message.unsubscribe.Mqtt3UnsubscribeBuilderBase
Mqtt3UnsubscribeBuilderBase.Start<C extends Mqtt3UnsubscribeBuilderBase<C>> -
Method Summary
Modifier and TypeMethodDescription@NotNull MqttTopicFilterBuilder.Nested<? extends C> Fluent counterpart oftopicFilter(MqttTopicFilter).topicFilter(@NotNull MqttTopicFilter topicFilter) Sets the mandatoryfirst Topic Filter.topicFilter(@NotNull String topicFilter) Sets the mandatoryfirst Topic Filter.Methods inherited from interface com.hivemq.client.mqtt.mqtt3.message.unsubscribe.Mqtt3UnsubscribeBuilderBase
addTopicFilter, addTopicFilter, addTopicFilter, addTopicFilters, addTopicFilters, addTopicFilters, reverse
-
Method Details
-
topicFilter
Sets the mandatoryfirst Topic Filter.- Parameters:
topicFilter- the string representation of the Topic Filter.- Returns:
- the builder that is now complete as the mandatory Topic Filter is set.
-
topicFilter
Sets the mandatoryfirst Topic Filter.- Parameters:
topicFilter- the Topic Filter.- Returns:
- the builder that is now complete as the mandatory Topic Filter is set.
-
topicFilter
Fluent counterpart oftopicFilter(MqttTopicFilter).Calling
MqttTopicFilterBuilder.Nested.End.applyTopicFilter()on the returned builder has the same effect as callingtopicFilter(MqttTopicFilter)with the result ofMqttTopicFilterBuilder.End.build().- Returns:
- the fluent builder for the Topic Filter.
- See Also:
-