com.partnersoft.v3x.gadgets
Class AsynchronousCommand

java.lang.Object
  extended by com.partnersoft.v3x.gadgets.AsynchronousCommand
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
GuppyClient.GuppyByeCommand, GuppyClient.GuppyChecksumHeaderCommand, GuppyClient.GuppyCompressOffCommand, GuppyClient.GuppyCompressOnCommand, GuppyClient.GuppyDeleteCommand, GuppyClient.GuppyDownloadCommand, GuppyClient.GuppyDownloadStreamCommand, GuppyClient.GuppyFileExistsCommand, GuppyClient.GuppyMessageCommand, GuppyClient.GuppySyncCommand, GuppyClient.GuppyUploadCommand, GuppyClient.GuppyUploadStreamCommand

public class AsynchronousCommand
extends java.lang.Object
implements java.io.Serializable

See Also:
Serialized Form

Constructor Summary
AsynchronousCommand()
          Create a new AsynchronousCommand.
 
Method Summary
 java.lang.Throwable getException()
          Exception occurred during processing.
 boolean getFailed()
          Processing failed.
 java.lang.String getName()
          Descriptive name for command.
 AsynchronousCommandQueue getQueue()
          Queue this command is in.
 java.lang.String getReasonFailed()
          Reason processing failed.
 boolean isCompleted()
          Processing completed.
 void reset()
           
 void setCompleted(boolean newCompleted)
          Processing completed.
 void setException(java.lang.Throwable newException)
          Exception occurred during processing.
 void setFailed(boolean newFailed)
          Processing failed.
 void setName(java.lang.String newName)
          Descriptive name for command.
 void setQueue(AsynchronousCommandQueue newQueue)
          Queue this command is in.
 void setReasonFailed(java.lang.String newReasonFailed)
          Reason processing failed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AsynchronousCommand

public AsynchronousCommand()
Create a new AsynchronousCommand.

Method Detail

reset

public void reset()

isCompleted

public boolean isCompleted()
Processing completed.


setCompleted

public void setCompleted(boolean newCompleted)
Processing completed.


getException

public java.lang.Throwable getException()
Exception occurred during processing.


setException

public void setException(java.lang.Throwable newException)
Exception occurred during processing.


getFailed

public boolean getFailed()
Processing failed.


setFailed

public void setFailed(boolean newFailed)
Processing failed.


getName

public java.lang.String getName()
Descriptive name for command.


setName

public void setName(java.lang.String newName)
Descriptive name for command.


getQueue

public AsynchronousCommandQueue getQueue()
Queue this command is in.


setQueue

public void setQueue(AsynchronousCommandQueue newQueue)
Queue this command is in.


getReasonFailed

public java.lang.String getReasonFailed()
Reason processing failed.


setReasonFailed

public void setReasonFailed(java.lang.String newReasonFailed)
Reason processing failed.