本文整理匯總了Java中org.jivesoftware.smack.SmackConfiguration.DEBUG屬性的典型用法代碼示例。如果您正苦於以下問題:Java SmackConfiguration.DEBUG屬性的具體用法?Java SmackConfiguration.DEBUG怎麽用?Java SmackConfiguration.DEBUG使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.jivesoftware.smack.SmackConfiguration
的用法示例。
在下文中一共展示了SmackConfiguration.DEBUG屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: XMPPManager
public XMPPManager(String server, int port) {
// SmackAndroid.init(ApplicationLoader.applicationContext);
// SmackConfiguration.setDefaultPacketReplyTimeout(packetReplyTimeout);
SmackConfiguration.setDefaultPacketReplyTimeout(20 * 300);
SmackConfiguration.DEBUG = true;
// createAlarm();
//mServiceLooper = Looper.getMainLooper();
this.HOST = server;
this.PORT = port;
//mReconnectHandler = new Handler(mServiceLooper);
}
示例2: entriesAdded
public synchronized void entriesAdded(Collection<String> addresses) {
addressesAdded.addAll(addresses);
if (SmackConfiguration.DEBUG) {
for (String address : addresses) {
System.out.println("Roster entry for " + address + " added.");
}
}
reportInvoked();
}
示例3: entriesDeleted
public synchronized void entriesDeleted(Collection<String> addresses) {
addressesDeleted.addAll(addresses);
if (SmackConfiguration.DEBUG) {
for (String address : addresses) {
System.out.println("Roster entry for " + address + " deleted.");
}
}
reportInvoked();
}
示例4: entriesUpdated
public synchronized void entriesUpdated(Collection<String> addresses) {
addressesUpdated.addAll(addresses);
if (SmackConfiguration.DEBUG) {
for (String address : addresses) {
System.out.println("Roster entry for " + address + " updated.");
}
}
reportInvoked();
}
示例5: presenceChanged
public void presenceChanged(Presence presence) {
if (SmackConfiguration.DEBUG) {
System.out.println("Roster presence changed: " + presence.toXML());
}
reportInvoked();
}