com.ibm.ulc.comm
Interface IORBListener


public interface IORBListener

A listener interface to listen to interesting communication events. This interface will be removed in the next release.

See Also:
IConnectionController, IRequestListener

Method Summary
 void addedConnection(ORBConnection conn)
          The given connection was added.
 void receivedRequest(ORBConnection conn, int target, java.lang.String request, Anything args)
          A request for the given target with the given arguments was received.
 void removedConnection(ORBConnection conn)
          The given connection was removed.
 void sentRequest(ORBConnection conn, int target, java.lang.String request, Anything args)
          A request for the given target with the given arguments was sent.
 

Method Detail

addedConnection

public void addedConnection(ORBConnection conn)
The given connection was added.

receivedRequest

public void receivedRequest(ORBConnection conn,
                            int target,
                            java.lang.String request,
                            Anything args)
A request for the given target with the given arguments was received.

removedConnection

public void removedConnection(ORBConnection conn)
The given connection was removed.

sentRequest

public void sentRequest(ORBConnection conn,
                        int target,
                        java.lang.String request,
                        Anything args)
A request for the given target with the given arguments was sent.