如何使用GCM运行XMPP服务器?

时间:2015-02-26 17:53:34

标签: java android xmpp google-cloud-messaging

我已按照google api中的说明实施了XMPP服务器。 写入的main函数正在发送下游消息。我使用while(true)循环来保持服务器运行。 我想知道保持服务器应用程序唤醒和处理消息的最佳做法是什么。

public static void main(String[] args) throws Exception {
    final long senderId = ***; // your GCM sender id
    final String password = "***";

    SmackCcsClient ccsClient = new SmackCcsClient();

    ccsClient.connect(senderId, password);

    while(true){}
}

0 个答案:

没有答案