当前位置: 首页>>代码示例>>Java>>正文


Java MqttClient.generateClientId方法代码示例

本文整理汇总了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();
	}
}
 
开发者ID:IoTKETI,项目名称:nCube-Thyme-Java,代码行数:22,代码来源:MqttClientKetiSub.java

示例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();
	}
}
 
开发者ID:IoTKETI,项目名称:nCube-Thyme-Java,代码行数:22,代码来源:MqttClientKetiPub.java

示例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();
}
 
开发者ID:cschneider,项目名称:reactive-components,代码行数:25,代码来源:MqttTest.java

示例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);
	}
}
 
开发者ID:mattjlewis,项目名称:diozero,代码行数:27,代码来源:ProtobufMqttProtocolHandler.java

示例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");
}
 
开发者ID:mattjlewis,项目名称:diozero,代码行数:19,代码来源:MqttTestClient.java

示例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);
  }
}
 
开发者ID:thilankam,项目名称:AppInventorRaspberryPiCompanion,代码行数:17,代码来源:InputPinHandler.java

示例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);


    }
 
开发者ID:lasseufpa,项目名称:circular,代码行数:12,代码来源:MQTTconect.java

示例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();
	}
}
 
开发者ID:mattjlewis,项目名称:diozero,代码行数:14,代码来源:MqttListener.java

示例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;
}
 
开发者ID:quarks-edge,项目名称:quarks,代码行数:14,代码来源:MqttConnector.java

示例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();

  }
 
开发者ID:thilankam,项目名称:AppInventorRaspberryPiCompanion,代码行数:31,代码来源:Server.java

示例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();
}
 
开发者ID:cschneider,项目名称:reactive-components,代码行数:7,代码来源:MqttComponent.java

示例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);
}
 
开发者ID:jpmeijers,项目名称:ttnmapperandroid,代码行数:7,代码来源:MyApp.java


注:本文中的org.eclipse.paho.client.mqttv3.MqttClient.generateClientId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。