![JAR search and dependency download from the Maven repository](/logo.png)
jp.ad.sinet.stream.plugins.mqttv5.Mqttv5AsyncBaseIO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SINETStream-mqttv5 Show documentation
Show all versions of SINETStream-mqttv5 Show documentation
The SINETStream is a messaging system that adopts a topic-based publish/subscribe model.
The newest version!
/*
* Copyright (C) 2023 National Institute of Informatics
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 jp.ad.sinet.stream.plugins.mqttv5;
import jp.ad.sinet.stream.api.Consistency;
import jp.ad.sinet.stream.api.SinetStreamException;
import jp.ad.sinet.stream.api.SinetStreamIOException;
import jp.ad.sinet.stream.api.ValueType;
import lombok.extern.java.Log;
import org.eclipse.paho.mqttv5.client.IMqttToken;
import org.eclipse.paho.mqttv5.client.MqttAsyncClient;
import org.eclipse.paho.mqttv5.client.MqttConnectionOptions;
import org.eclipse.paho.mqttv5.common.MqttException;
import java.util.Map;
@Log
public class Mqttv5AsyncBaseIO extends AbstractMqttv5IO {
Mqttv5AsyncBaseIO(String service, Consistency consistency, String clientId, Map config, ValueType valueType, boolean dataEncryption) {
super(service, consistency, clientId, config, valueType, dataEncryption);
}
@Override
protected MqttAsyncClient newMqttClient(String realClientId) {
try {
return new MqttAsyncClient(getServerURI(), realClientId, getPersistence());
} catch (MqttException e) {
throw new SinetStreamException(e);
}
}
@Override
protected IMqttToken mqttConnect(MqttConnectionOptions opts) throws MqttException {
IMqttToken ret = client.connect(connectionOptions);
ret.waitForCompletion();
return ret;
}
@Override
@SuppressWarnings("WeakerAccess")
public String getClientId() {
return this.client.getClientId();
}
@Override
protected void doClose() {
try {
if (this.client.isConnected()) {
log.fine(() -> "Disconnect the broker: " + getClientId());
this.client.disconnect().waitForCompletion();
}
log.fine(() -> "close MQTT client: " + getClientId());
this.client.close();
} catch (MqttException e) {
throw new SinetStreamIOException(e);
}
}
public Object getMetrics() { return null; }
public void resetMetrics() { }
public void debugDisconnectForcibly() throws MqttException {
long quiesceTimeout_ms = 0;
long disconnectTimeout_ms = 0;
boolean sendDisconnectPacket = false;
client.disconnectForcibly(quiesceTimeout_ms, disconnectTimeout_ms, sendDisconnectPacket);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy