org.openorb.orb.pi
Class SimpleServerManager
java.lang.Object
|
+--org.openorb.orb.pi.SimpleServerManager
- All Implemented Interfaces:
- ServerManager
- public class SimpleServerManager
- extends java.lang.Object
- implements ServerManager
This interface describes all operations that must be implemented to provide a server request
interceptor manager.
- Version:
- $Revision: 1.7 $ $Date: 2004/02/10 22:09:10 $
- Author:
- Jerome Daniel, Chris Wood
Field Summary |
static int |
BAD_INTERCEPTOR_RESPONSE
minor code of INTERNAL exception thrown when an interceptor gives
and invalid response. |
Method Summary |
void |
receive_request_service_contexts(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
This operation must be called from the server interception point. |
void |
receive_request(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
This operation must be called from the server interception point. |
void |
send_exception(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
This operation must be called from the server interception point. |
void |
send_other(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
This operation must be called from the server interception point. |
void |
send_reply(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
This operation must be called from the server interception point. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BAD_INTERCEPTOR_RESPONSE
public static final int BAD_INTERCEPTOR_RESPONSE
- minor code of INTERNAL exception thrown when an interceptor gives
and invalid response.
SimpleServerManager
public SimpleServerManager(org.omg.PortableInterceptor.ServerRequestInterceptor[] list,
CurrentImpl current)
- Set the interceptors list
receive_request_service_contexts
public void receive_request_service_contexts(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
- This operation must be called from the server interception point.
- Specified by:
receive_request_service_contexts
in interface ServerManager
receive_request
public void receive_request(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
- This operation must be called from the server interception point.
- Specified by:
receive_request
in interface ServerManager
send_reply
public void send_reply(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
- This operation must be called from the server interception point.
- Specified by:
send_reply
in interface ServerManager
send_exception
public void send_exception(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
- This operation must be called from the server interception point.
- Specified by:
send_exception
in interface ServerManager
send_other
public void send_other(org.omg.PortableInterceptor.ServerRequestInfo info,
RequestCallback cb)
- This operation must be called from the server interception point.
- Specified by:
send_other
in interface ServerManager