i3mclient.communication
Class Communication.AsynchronCallItem

java.lang.Object
  |
  +--i3mclient.communication.Communication.AsynchronCallItem
Enclosing class:
Communication

public class Communication.AsynchronCallItem
extends Object

One item of the asynchron call lists.

Author:
Dirk Plate

Field Summary
 I3MServerException exception
          The exeception of the webservice call (null if none)
 ServerMethodListener listener
          This listener will be informed after the call
 int method
          Identifies the method which is called
 Vector parameter
          Contains all parameter for the webservice call
 Object returnValue
          Contains the return value of the webservice call
 boolean swtThreadRequired
          The listener need to be informed in a SWT-thread
 
Constructor Summary
Communication.AsynchronCallItem(int methodSet, ServerMethodListener listenerSet, boolean swtThreadRequiredSet, Vector parameterSet)
          Constructor.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

method

public int method
Identifies the method which is called


listener

public ServerMethodListener listener
This listener will be informed after the call


swtThreadRequired

public boolean swtThreadRequired
The listener need to be informed in a SWT-thread


parameter

public Vector parameter
Contains all parameter for the webservice call


returnValue

public Object returnValue
Contains the return value of the webservice call


exception

public I3MServerException exception
The exeception of the webservice call (null if none)

Constructor Detail

Communication.AsynchronCallItem

public Communication.AsynchronCallItem(int methodSet,
                                       ServerMethodListener listenerSet,
                                       boolean swtThreadRequiredSet,
                                       Vector parameterSet)
Constructor.

Parameters:
methodSet - Identifier of the method
listenerSet - Listener which will be informed
swtThreadRequiredSet - Listener must be called in a SWT-thread
parameterSet - Parameters for the webservice call