All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Interface com.visigenic.vbroker.interceptor.ClientInterceptor

public interface ClientInterceptor

IDL definition:
#pragma prefix "visigenic.com/interceptor"
interface ClientInterceptor {
void prepare_request(
inout ::GIOP::RequestHeader hdr,
in ::interceptor::Closure closure
);
::CORBA::portable::OutputStream send_request(
in ::GIOP::RequestHeader hdr,
in ::CORBA::portable::OutputStream buf,
in ::interceptor::Closure closure
);
void send_request_failed(
in ::GIOP::RequestHeader hdr,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);
void send_request_succeeded(
in ::GIOP::RequestHeader hdr,
in ::interceptor::Closure closure
);
::CORBA::portable::InputStream receive_reply(
in ::GIOP::ReplyHeader hdr,
in ::CORBA::portable::InputStream buf,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);
void receive_reply_failed(
in unsigned long req_id,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);
void exception_occurred(
in unsigned long req_id,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);
};


Method Index

 o exception_occurred(int, Environment, Closure)

Operation: ::interceptor::ClientInterceptor::exception_occurred.

 o prepare_request(RequestHeaderHolder, Closure)

Operation: ::interceptor::ClientInterceptor::prepare_request.

 o receive_reply(ReplyHeader, InputStream, Environment, Closure)

Operation: ::interceptor::ClientInterceptor::receive_reply.

 o receive_reply_failed(int, Environment, Closure)

Operation: ::interceptor::ClientInterceptor::receive_reply_failed.

 o send_request(RequestHeader, OutputStream, Closure)

Operation: ::interceptor::ClientInterceptor::send_request.

 o send_request_failed(RequestHeader, Environment, Closure)

Operation: ::interceptor::ClientInterceptor::send_request_failed.

 o send_request_succeeded(RequestHeader, Closure)

Operation: ::interceptor::ClientInterceptor::send_request_succeeded.

Methods

 o prepare_request
public abstract void prepare_request(RequestHeaderHolder hdr,
                                     Closure closure)

Operation: ::interceptor::ClientInterceptor::prepare_request.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
void prepare_request(
inout ::GIOP::RequestHeader hdr,
in ::interceptor::Closure closure
);

 o send_request
public abstract OutputStream send_request(RequestHeader hdr,
                                          OutputStream buf,
                                          Closure closure)

Operation: ::interceptor::ClientInterceptor::send_request.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
::CORBA::portable::OutputStream send_request(
in ::GIOP::RequestHeader hdr,
in ::CORBA::portable::OutputStream buf,
in ::interceptor::Closure closure
);

 o send_request_failed
public abstract void send_request_failed(RequestHeader hdr,
                                         Environment env,
                                         Closure closure)

Operation: ::interceptor::ClientInterceptor::send_request_failed.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
void send_request_failed(
in ::GIOP::RequestHeader hdr,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);

 o send_request_succeeded
public abstract void send_request_succeeded(RequestHeader hdr,
                                            Closure closure)

Operation: ::interceptor::ClientInterceptor::send_request_succeeded.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
void send_request_succeeded(
in ::GIOP::RequestHeader hdr,
in ::interceptor::Closure closure
);

 o receive_reply
public abstract InputStream receive_reply(ReplyHeader hdr,
                                          InputStream buf,
                                          Environment env,
                                          Closure closure)

Operation: ::interceptor::ClientInterceptor::receive_reply.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
::CORBA::portable::InputStream receive_reply(
in ::GIOP::ReplyHeader hdr,
in ::CORBA::portable::InputStream buf,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);

 o receive_reply_failed
public abstract void receive_reply_failed(int req_id,
                                          Environment env,
                                          Closure closure)

Operation: ::interceptor::ClientInterceptor::receive_reply_failed.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
void receive_reply_failed(
in unsigned long req_id,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);

 o exception_occurred
public abstract void exception_occurred(int req_id,
                                        Environment env,
                                        Closure closure)

Operation: ::interceptor::ClientInterceptor::exception_occurred.

#pragma prefix "visigenic.com/interceptor/ClientInterceptor"
void exception_occurred(
in unsigned long req_id,
in ::CORBA::Environment env,
in ::interceptor::Closure closure
);


All Packages  Class Hierarchy  This Package  Previous  Next  Index