ページの先頭行へ戻る
Interstage Application Server リファレンスマニュアル(API編)

2.9 ServerRequestクラス

  本節では、動的スケルトンインタフェースで用いるServerRequestクラスについて説明します。

  class CORBA
  {
          class ServerRequest
          {
          public:
                  CORBA::Identifier      op_name(
                          CORBA::Environment & )
                          throw(CORBA::SystemException) = 0;
                  CORBA::Context_ptr      ctx(
                          CORBA::Environment & )
                          throw(CORBA::SystemException) = 0;
                  void    params(
                          CORBA::NVList_ptr,
                          CORBA::Environment & )
                          throw(CORBA::SystemException) = 0;
                  void    result(
                          CORBA::Any*,
                          CORBA::Environment & )
                          throw(CORBA::SystemException) = 0;
                  void    exception(
                          CORBA::Any*,
                          CORBA::Environment & )
                          throw(CORBA::SystemException) = 0;
          }
  }