Interface PubcompInboundInterceptor
- All Superinterfaces:
Interceptor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PubcompInboundInterceptor extends Interceptor
Interface for the inbound PUBCOMP interception.
Interceptors are always called by the same Thread for all messages from the same client.
If the same instance is shared between multiple clients it can be called in different Threads and must therefore be thread-safe.
When the method onInboundPubcomp(PubcompInboundInput, PubcompInboundOutput) throws an exception or a call to
PubcompInboundOutput.async(Duration) times out with TimeoutFallback.FAILURE, HiveMQ will ignore this
interceptor and will:
- Log the exception
- Revert the changes to the
ModifiablePubcompPacketmade by the interceptor - Call the next
PubcompInboundInterceptoror send the PUBCOMP to the server if no interceptor is left
- Since:
- 4.3.0, CE 2020.1
-
Method Summary
Modifier and Type Method Description voidonInboundPubcomp(@NotNull PubcompInboundInput pubcompInboundInput, @NotNull PubcompInboundOutput pubcompInboundOutput)When aPubcompInboundInterceptoris set through any extension, this method gets called for every inbound PUBCOMP packet from any MQTT client.
-
Method Details
-
onInboundPubcomp
void onInboundPubcomp(@NotNull PubcompInboundInput pubcompInboundInput, @NotNull PubcompInboundOutput pubcompInboundOutput)When aPubcompInboundInterceptoris set through any extension, this method gets called for every inbound PUBCOMP packet from any MQTT client.When the extension is enabled after HiveMQ is already running, this method will also be called for future PUBCOMPs of clients that are already connected.
- Parameters:
pubcompInboundInput- ThePubcompInboundInputparameter.pubcompInboundOutput- ThePubcompInboundOutputparameter.- Since:
- 4.3.0, CE 2020.1
-