本文整理汇总了Java中org.eclipse.paho.client.mqttv3.MqttClient.generateClientId方法的典型用法代码示例。如果您正苦于以下问题:Java MqttClient.generateClientId方法的具体用法?Java MqttClient.generateClientId怎么用?Java MqttClient.generateClientId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.paho.client.mqttv3.MqttClient
的用法示例。
在下文中一共展示了MqttClient.generateClientId方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: MqttClientKetiSub
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public MqttClientKetiSub(String serverUrl, String aeId) {
this.mqttServerUrl = serverUrl;
this.aeId = aeId;
this.mqttClientId = MqttClient.generateClientId()+"K";
System.out.println("[KETI MQTT Client] Client Initialize");
try {
mqc = new MqttClient(mqttServerUrl, mqttClientId, persistence);
while(!mqc.isConnected()){
mqc.connect();
System.out.println("[KETI MQTT Client] Connection try");
}
System.out.println("[KETI MQTT Client] Connected to Server - " + mqttServerUrl);
} catch (MqttException e) {
e.printStackTrace();
}
}
示例2: MqttClientKetiPub
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public MqttClientKetiPub(String serverUrl, String aeId) {
this.mqttServerUrl = serverUrl;
this.aeId = aeId;
this.mqttClientId = MqttClient.generateClientId()+"K";
System.out.println("[KETI MQTT Client] Client Initialize");
try {
mqc = new MqttClient(mqttServerUrl, mqttClientId, persistence);
while(!mqc.isConnected()){
mqc.connect();
System.out.println("[KETI MQTT Client] Connection try");
}
System.out.println("[KETI MQTT Client] Connected to Server - " + mqttServerUrl);
} catch (MqttException e) {
e.printStackTrace();
}
}
示例3: testMQtt
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
@Test
public void testMQtt() throws Exception {
CountDownLatch latch = new CountDownLatch(1);
MqttClient client = new MqttClient("tcp://localhost:" + MQTT_PORT, MqttClient.generateClientId(), new MemoryPersistence());
client.connect();
MqttComponent mqtt = new MqttComponent();
mqtt.client = client;
Publisher<byte[]> fromTopic = mqtt.from("input", byte[].class);
Subscriber<byte[]> toTopic = mqtt.to("output", byte[].class);
Flux.from(fromTopic)
.log()
.subscribe(toTopic);
client.subscribe("output", (topic, message) -> {
result = new Integer(new String(message.getPayload()));
latch.countDown();
});
client.publish("input", new MqttMessage(new Integer(2).toString().getBytes()));
client.publish("input", new MqttMessage(new Integer(2).toString().getBytes()));
latch.await(100, TimeUnit.SECONDS);
Assert.assertEquals(2, result, 0.1);
client.disconnect();
client.close();
}
示例4: ProtobufMqttProtocolHandler
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public ProtobufMqttProtocolHandler(NativeDeviceFactoryInterface deviceFactory) {
super(deviceFactory);
String mqtt_url = PropertyUtil.getProperty(MQTT_URL_PROP, null);
if (mqtt_url == null) {
throw new RuntimeIOException("Property '" + MQTT_URL_PROP + "' must be set");
}
try {
mqttClient = new MqttClient(mqtt_url, MqttClient.generateClientId(), new MemoryPersistence());
mqttClient.setCallback(this);
MqttConnectOptions con_opts = new MqttConnectOptions();
con_opts.setAutomaticReconnect(true);
con_opts.setCleanSession(true);
mqttClient.connect(con_opts);
Logger.debug("Connected to {}", mqtt_url);
// Subscribe
Logger.debug("Subscribing to response and notification topics...");
mqttClient.subscribe(MqttProviderConstants.RESPONSE_TOPIC);
mqttClient.subscribe(MqttProviderConstants.GPIO_NOTIFICATION_TOPIC);
Logger.debug("Subscribed");
} catch (MqttException e) {
throw new RuntimeIOException(e);
}
}
示例5: MqttTestClient
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public MqttTestClient(String mqttUrl) throws MqttException {
mqttClient = new MqttClient(mqttUrl, MqttClient.generateClientId(), new MemoryPersistence());
mqttClient.setCallback(this);
MqttConnectOptions con_opts = new MqttConnectOptions();
con_opts.setAutomaticReconnect(true);
con_opts.setCleanSession(true);
mqttClient.connect(con_opts);
Logger.debug("Connected to {}", mqttUrl);
lock = new ReentrantLock();
conditions = new HashMap<>();
responses = new HashMap<>();
// Subscribe
Logger.debug("Subscribing to {}...", MqttProviderConstants.RESPONSE_TOPIC);
mqttClient.subscribe(MqttProviderConstants.RESPONSE_TOPIC);
Logger.debug("Subscribed");
}
示例6: InputPinHandler
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public InputPinHandler() {
MqttConnectOptions connOpts = new MqttConnectOptions();
connOpts.setCleanSession(true);
try {
mClient = new MqttClient(PropertyUtil.getMqttAddress(), MqttClient.generateClientId(), new MemoryPersistence());
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Connecting to broker " + PropertyUtil.getMqttAddress() + "...");
}
mClient.connect(connOpts);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Connected to broker " + PropertyUtil.getMqttAddress() + ".");
}
} catch (MqttException e) {
LOGGER.error(e.getMessage(), e);
}
}
示例7: MQTTconect
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public MQTTconect(Context contexto,MqttCallback mqttcallback) {
//gera um código randômico que serve como identificação do cliente
clientID = MqttClient.generateClientId()+"circularUFPAapp";
//cria um objeto MQTTClient android entregando como parametro o endereço o servidor e o id do cliente
mqttAndroidClient = new MqttAndroidClient(contexto, serverAndress, clientID);
//configura um objeto CallBack (objeto de chamada caso haja alteração)
mqttAndroidClient.setCallback(mqttcallback);
}
示例8: MqttListener
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public MqttListener() {
try {
mqttClient = new MqttClient(mqttServer, MqttClient.generateClientId(), new MemoryPersistence());
mqttClient.setCallback(this);
MqttConnectOptions con_opts = new MqttConnectOptions();
con_opts.setCleanSession(true);
mqttClient.connect(con_opts);
System.out.println("Connected to '" + mqttServer + "'");
} catch (MqttException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
示例9: MqttConnector
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
/**
* Create a new connector.
*
* @param config connector configuration.
*/
public MqttConnector(Supplier<MqttConfig> config) {
this.configFn = config;
String cid = configFn.get().getClientId();
if (cid == null)
cid = MqttClient.generateClientId();
clientId = cid;
}
示例10: Server
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public Server() {
initializeIdentifier();
displayIdentifier();
final ThreadFactory threadFactory = new ThreadFactoryBuilder().setNameFormat("RaspberryPiServer-%d").setDaemon(true)
.build();
executorService = Executors.newFixedThreadPool(THREAD_POOL_SIZE, threadFactory);
try {
MqttConnectOptions connOpts = new MqttConnectOptions();
connOpts.setCleanSession(true);
mClient = new MqttClient(PropertyUtil.getMqttAddress(), MqttClient.generateClientId(), new MemoryPersistence());
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Connecting to broker " + PropertyUtil.getMqttAddress() + "...");
}
mClient.connect(connOpts);
mClient.setCallback(this);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Connected to broker " + PropertyUtil.getMqttAddress() + ".");
}
} catch (MqttException e) {
e.printStackTrace();
}
subscribeToInternalTopic();
}
示例11: activate
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
@Activate
public void activate(MqttConfig config) throws MqttException {
client = new MqttClient(config.serverUrl(), MqttClient.generateClientId(),
new MemoryPersistence());
client.connect();
}
示例12: createMqttClient
import org.eclipse.paho.client.mqttv3.MqttClient; //导入方法依赖的package包/类
public void createMqttClient(String serverAddress)
{
String mqttClientId = MqttClient.generateClientId();
System.out.println("Server address: " + serverAddress);
myMQTTclient = new MqttAndroidClient(this.getApplicationContext(), serverAddress, mqttClientId);
}