public class SimpleClientManager extends java.lang.Object implements ClientManager
| Modifier and Type | Field and Description |
|---|---|
static int |
BAD_INTERCEPTOR_RESPONSE
exception code for exception thrown when an interceptor
gives a non-complient response.
|
| Constructor and Description |
|---|
SimpleClientManager(org.omg.PortableInterceptor.ClientRequestInterceptor[] list,
CurrentImpl current)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
receive_exception(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
This operation must be called from the client interception point.
|
void |
receive_other(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
This operation must be called from the client interception point.
|
void |
receive_reply(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
This operation must be called from the client interception point when a reply is received.
|
void |
send_poll(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
This operation must be called from the client interception point.
|
void |
send_request(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
This operation must be called from the client interception point.
|
public static final int BAD_INTERCEPTOR_RESPONSE
public SimpleClientManager(org.omg.PortableInterceptor.ClientRequestInterceptor[] list,
CurrentImpl current)
public void send_request(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
send_request in interface ClientManagerinfo - The client request descriptor.cb - The callback instance.public void send_poll(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
send_poll in interface ClientManagerinfo - The client request descriptor.cb - The callback instance.public void receive_reply(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
receive_reply in interface ClientManagerinfo - The client request descriptor.cb - The callback instance.public void receive_exception(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
receive_exception in interface ClientManagerinfo - The client request descriptor.cb - The callback instance.public void receive_other(org.omg.PortableInterceptor.ClientRequestInfo info,
RequestCallback cb)
receive_other in interface ClientManagerinfo - The client request descriptor.cb - The callback instance.