Interstage Application Server リファレンスマニュアル(API編)
|
目次
索引

|
3.7 Requestクラス
動的呼び出しインタフェースで用いるRequestクラスについて説明します。
//Java
package org.omg.CORBA;
public abstract class Request
{
public abstract Object target();
public abstract java.lang.String operation();
public abstract org.omg.CORBA.NVList arguments();
public abstract org.omg.CORBA.NamedValue result();
public abstract org.omg.CORBA.Environment env();
public abstract org.omg.CORBA.ExceptionList exceptions();
public abstract org.omg.CORBA.ContextList contexts();
public abstract org.omg.CORBA.Context ctx();
public abstract void ctx(Context c);
public abstract org.omg.CORBA.Any add_in_arg();
public abstract org.omg.CORBA.Any add_named_in_arg(java.lang.String name);
public abstract org.omg.CORBA.Any add_inout_arg();
public abstract org.omg.CORBA.Any add_named_inout_arg(java.lang.String name);
public abstract org.omg.CORBA.Any add_out_arg();
public abstract org.omg.CORBA.Any add_named_out_arg(java.lang.String name);
public abstract void set_return_type(org.omg.CORBA.TypeCode tc);
public abstract org.omg.CORBA.Any return_value();
public abstract void invoke();
public abstract void send_oneway();
public abstract void send_deferred();
public abstract void get_response()
throws org.omg.CORBA.WrongTransaction;
public abstract boolean poll_response();
}
3.7.1 org.omg.CORBA.Request.target()
3.7.2 org.omg.CORBA.Request.operation()
3.7.3 org.omg.CORBA.Request.arguments()
3.7.4 org.omg.CORBA.Request.result()
3.7.5 org.omg.CORBA.Request.env()
3.7.6 org.omg.CORBA.Request.exceptions()
3.7.7 org.omg.CORBA.Request.contexts()
3.7.8 org.omg.CORBA.Request.ctx()
3.7.9 org.omg.CORBA.Request.add_in_arg()
3.7.10 org.omg.CORBA.Request.add_named_in_arg()
3.7.11 org.omg.CORBA.Request.add_inout_arg()
3.7.12 org.omg.CORBA.Request.add_named_inout_arg()
3.7.13 org.omg.CORBA.Request.add_out_arg()
3.7.14 org.omg.CORBA.Request.add_named_out_arg()
3.7.15 org.omg.CORBA.Request.set_return_type()
3.7.16 org.omg.CORBA.Request.return_value()
3.7.17 org.omg.CORBA.Request.invoke()
3.7.18 org.omg.CORBA.Request.send_oneway()
3.7.19 org.omg.CORBA.Request.send_deferred()
3.7.20 org.omg.CORBA.Request.get_response()
3.7.21 org.omg.CORBA.Request.poll_response()
All Rights Reserved, Copyright(C) 富士通株式会社 2005