net.sourceforge.esw.transport
Interface ITransportDelegate

All Known Implementing Classes:
RMITransportDelegate

public interface ITransportDelegate

This is the entry point to the Transport system. Clients wishing to use transport must first startup the Transport system using methods in this object.


Method Summary
 java.lang.Object getProxy(java.lang.Object aObject)
          Creates a Proxy object that can be sent to remote clients that allows remote method calls to be made against the specified object.
 void startup()
          Starts up the Transport system.
 void startup(int aPort)
          Starts up the Transport system at the specified port.
 

Method Detail

startup

public void startup()
             throws java.lang.Exception
Starts up the Transport system.

startup

public void startup(int aPort)
             throws java.lang.Exception
Starts up the Transport system at the specified port.
Parameters:
aPort - the port on which to start the trasport.

getProxy

public java.lang.Object getProxy(java.lang.Object aObject)
                          throws java.lang.Exception
Creates a Proxy object that can be sent to remote clients that allows remote method calls to be made against the specified object.
Parameters:
aObject - the Object to create a Proxy from
Throws:
java.lang.Exception - if an error occured during creation of the Proxy.


Copyright 2002 Free Software Foundation. All Rights Reserved.