1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-25 21:04:50 +02:00

Timeout should only apply to remote commands.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@10947 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2008-12-16 23:00:45 +00:00 committed by matt
parent 1bdacfb65e
commit afe2b9b584
2 changed files with 10 additions and 12 deletions

View file

@ -214,17 +214,6 @@ public abstract class AdHocCommand {
*/
public abstract void execute() throws XMPPException;
/**
* Executes the command, waiting up to the <tt>timeout</tt> for a reply.
* This is invoked only on the first stage of the
* command. It is invoked on every command. If there is a problem executing
* the command it throws an XMPPException.
*
* @param timeout the length of time in ms to wait for a reply.
* @throws XMPPException if there is an error executing the command.
*/
public abstract void execute(long timeout) throws XMPPException;
/**
* Executes the next action of the command with the information provided in
* the <code>response</code>. This form must be the answer form of the

View file

@ -92,10 +92,19 @@ public class RemoteCommand extends AdHocCommand {
executeAction(Action.execute, SmackConfiguration.getPacketReplyTimeout());
}
@Override
/**
* Executes the command, waiting up to the <tt>timeout</tt> for a reply.
* This is invoked only on the first stage of the
* command. It is invoked on every command. If there is a problem executing
* the command it throws an XMPPException.
*
* @param timeout the length of time in ms to wait for a reply.
* @throws XMPPException if there is an error executing the command.
*/
public void execute(long timeout) throws XMPPException {
executeAction(Action.execute, timeout);
}
/**
* Executes the default action of the command with the information provided
* in the Form. This form must be the anwser form of the previous stage. If