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

io.github.quickmsg.common.channel.MockMqttChannel Maven / Gradle / Ivy

The newest version!
package io.github.quickmsg.common.channel;

import io.netty.handler.codec.mqtt.MqttMessage;
import reactor.core.publisher.Mono;

/**
 * @author luxurong
 */
public class MockMqttChannel extends MqttChannel {

    private MockMqttChannel() {

    }

    public final static MockMqttChannel DEFAULT_MOCK_CHANNEL = new MockMqttChannel();


    public static MockMqttChannel wrapClientIdentifier(String clientIdentifier) {
        MockMqttChannel mockMqttChannel = new MockMqttChannel();
        mockMqttChannel.setClientIdentifier(clientIdentifier);
        return mockMqttChannel;
    }


    @Override
    public Mono write(MqttMessage mqttMessage, boolean retry) {
        return Mono.empty();
    }


    @Override
    public Boolean getIsMock() {
        return true;
    }


    @Override
    public String toString() {
        return "MockMqttChannel{" +
                ", clientIdentifier='" + getClientIdentifier() + '\'' + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy