public MqttDestination()

in rcomp-mqtt/src/main/java/org/apache/karaf/rcomp/mqtt/MqttDestination.java [30:36]


    public MqttDestination(MqttClient client, String topic, Class<? extends T> type) {
        this.client = client;
        this.topic = topic;
        if (! type.equals(byte[].class)) {
            throw new IllegalArgumentException("Curently only byte[] is supported");
        }
    }