provided.compute
Interface IRemoteTaskViewAdapter

All Superinterfaces:
java.rmi.Remote

public interface IRemoteTaskViewAdapter
extends java.rmi.Remote

A remote view adapter for a task.

Author:
swong

Field Summary
static int BOUND_PORT_CLIENT
          A secondary port that the server will use to communicate with the IRemoteTaskViewAdapter object on the client.
static int BOUND_PORT_SERVER
          The port that the client will use to communicate with the IRemoteTaskViewAdapter object on the server.
 
Method Summary
 void append(java.lang.String s)
          Append the given string to the remote view's display
 

Field Detail

BOUND_PORT_SERVER

static final int BOUND_PORT_SERVER
The port that the client will use to communicate with the IRemoteTaskViewAdapter object on the server. Note that this port must be opened for inbound traffic on the machine where the adapter actually resides (the Server).

See Also:
Constant Field Values

BOUND_PORT_CLIENT

static final int BOUND_PORT_CLIENT
A secondary port that the server will use to communicate with the IRemoteTaskViewAdapter object on the client. Note that this port must be opened for inbound traffic on the machine where the adapter actually resides (the client). The client and server must use different ports in order to run on the same machine.

See Also:
Constant Field Values
Method Detail

append

void append(java.lang.String s)
            throws java.rmi.RemoteException
Append the given string to the remote view's display

Parameters:
s - the string to display
Throws:
java.rmi.RemoteException - thrown if a network error occurs