Searched refs:packetReplyTimeout (Results 1 – 2 of 2) sorted by relevance
/external/smack/src/org/jivesoftware/smackx/commands/ |
D | RemoteCommand.java | 69 private long packetReplyTimeout; field in RemoteCommand 85 this.packetReplyTimeout = SmackConfiguration.getPacketReplyTimeout(); in RemoteCommand() 90 executeAction(Action.cancel, packetReplyTimeout); in cancel() 95 executeAction(Action.complete, form, packetReplyTimeout); in complete() 100 executeAction(Action.execute, packetReplyTimeout); in execute() 112 executeAction(Action.execute, form, packetReplyTimeout); in execute() 117 executeAction(Action.next, form, packetReplyTimeout); in next() 122 executeAction(Action.prev, packetReplyTimeout); in prev() 125 private void executeAction(Action action, long packetReplyTimeout) throws XMPPException { in executeAction() argument 126 executeAction(action, null, packetReplyTimeout); in executeAction() [all …]
|
/external/smack/src/org/jivesoftware/smack/ |
D | SmackConfiguration.java | 53 private static int packetReplyTimeout = 5000; field in SmackConfiguration 102 … packetReplyTimeout = parseIntProperty(parser, packetReplyTimeout); 163 if (packetReplyTimeout <= 0) { in getPacketReplyTimeout() 164 packetReplyTimeout = 5000; in getPacketReplyTimeout() 166 return packetReplyTimeout; in getPacketReplyTimeout() 179 packetReplyTimeout = timeout; in setPacketReplyTimeout()
|