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

第2章 C++言語インタフェース

2.2 ORBクラス

 ここでは、ORB(クライアント/サーバ間の通信を仲介する機能:Object Request Broker)の初期化などを行うための基本的なインタフェースを提供するORBクラスについて説明します。

 class CORBA
 {
      public:
      typedef string ORBid;
      typedef string ObjectId ;
      typedef BOA_ptr *BOA;
      typedef NVList_ptr *NVList;
      typedef OperationDef_ptr *OperationDef;
      typedef Context_ptr *Context;

      ORB_ptr ORB_init(int&, char**, ORBid);
      class ORB : public CORBA
      {
      public:
          BOA_ptr BOA_init (int *, char **, BOAid, CORBA::Environment& );
          Object_ptr resolve_initial_references (ObjectId, CORBA::Environment&);
          char *object_to_string(Object_ptr, CORBA::Environment&);
          Object_ptr string_to_object(const char *, CORBA::Environment& );
          Status create_list(Long, NVList_ptr&, CORBA::Environment& );
          Status create_operation_list(OperationDef_ptr, NVList&, CORBA::Environment& );
          Status get_default_context(Context_ptr&, CORBA::Environment& );
          Status create_environment(Environment_ptr&, CORBA::Environment& );
          Status send_multiple_requests_oneway(const RequestSeq&, CORBA::Environment& );
          Status send_multiple_requests_deferred(const RequestSeq, CORBA::Environment& );
          Status get_next_response(RequestSeq*&, CORBA::Environment& );
          boolean poll_next_response( CORBA::Environment& );
      };

      class RequestSeq
      {
      public:
          RequestSeq();
          RequestSeq( ULong max );
          RequestSeq(
              ULong max,
              ULong length,
              Request_ptr *value,
              Boolean release = FALSE
          );
          ~RequestSeq();
      private:
          ULong _maximum;
          ULong _length;
          Request_ptr *_buffer;
      };
 }

下へ2.2.1 CORBA::ORB_init()
下へ2.2.2 CORBA::ORB::BOA_init()
下へ2.2.3 CORBA::ORB::resolve_initial_references()
下へ2.2.4 CORBA::ORB::resolve_initial_references_remote()
下へ2.2.5 CORBA::ORB::list_initial_services()
下へ2.2.6 CORBA::ORB::object_to_string()
下へ2.2.7 CORBA::ORB::string_to_object()
下へ2.2.8 CORBA::ORB::create_list()
下へ2.2.9 CORBA::ORB::create_operation_list()
下へ2.2.10 CORBA::ORB::get_default_context()
下へ2.2.11 CORBA::ORB::create_environment()
下へ2.2.12 CORBA::ORB::send_multiple_requests_oneway()
下へ2.2.13 CORBA::ORB::send_multiple_requests_deferred()
下へ2.2.14 CORBA::ORB::get_next_response()

目次 索引 前ページ次ページ

All Rights Reserved, Copyright(C) 富士通株式会社 2005