⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtcosscheduling.idl

📁 这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料
💻 IDL
字号:
/* -*- idl -*- */

//=============================================================================
/**
 *  @file    RTCosScheduling.idl
 *
 *  RTCosScheduling.idl,v 1.2 2003/10/15 08:32:01 jwillemsen Exp
 *
 *  @author Matt Murphy <murphym@cs.uri.edu>
 */
//=============================================================================

/**
 * This directory contains the idl for the RTCORBA 1.0 Scheduling Service.
 * To generate the stubs and skeletons, run
 * tao_idl -I $TAO_ROOT/ RTCosScheduling.idl
 *
 */


#ifndef _RT_COS_SCHEDULING_
#define _RT_COS_SCHEDULING_

#include <orb.idl>
#include "tao/PortableServer/PortableServer.pidl"

/**
 * @module RTCosScheduling
 *
 * @brief This module contains the interfaces for the RTCORBA 1.0
 * Scheduling Service.
 */


module RTCosScheduling {

  /**
   * This exception is thrown by schedule activity when an activity name
   * is passed that is associated with a priority in the config file.
   * It is thrown by schedule_object when an object name is passed in
   * that was not assiciated with a resource priority ceiling in the
   * config file.
   */
  exception UnknownName {};

  /**
   * @interface ClientScheduler
   *
   * @brief This interface is used by clients who wish to
   * schedule activities using the RT CORBA 1.0 Scheduling Service.
   */
  local interface ClientScheduler {

    /**
     * schedule_activity associates an activity name with a known priority
     * for that activity.  It then sets RT Current to that priority.
     * If the name passed does not have a priority associated then
     * schedule_activity throws an UnknownName exception.
     *
     * @param activity_name is the name of the activity that the client
     * would like to run.  The activity_name is associated with a
     * priority by schedule_activity and RT Current is set to that
     * priority.
     */
    void schedule_activity(in string activity_name )
      raises (UnknownName);
    };

  /**
   * @interface ServerScheduler
   *
   * @brief This interface is used by nodes that hold a local object
   * reference.
   */
  local interface ServerScheduler {

    /**
     * create_POA is called by servers that would like to use the
     * RT CORBA 2.0 Scheduling Service.
     *
     * @param parent The poa to base the RT POA upon
     * @param adapter_name the adapter name for the poa
     * @param a_POAManager the poa_manager
     * @param policies the list of non real time policies to be set
     *
     */
    PortableServer::POA create_POA (
      in PortableServer::POA parent,
      in string adapter_name,
      in PortableServer::POAManager a_POAManager,
      in CORBA::PolicyList policies)
        raises (PortableServer::POA::AdapterAlreadyExists,
                PortableServer::POA::InvalidPolicy);

    /**
     * schedule_object is called on servers to associate a
     * CORBA object reference with a name.  This allows the
     * scheduling service to map a server object name to a resource
     * ceiling.  An UnknownName exception is found if the object name
     * is not found in the config file.
     */
    void schedule_object(in Object obj, in string name)
      raises (UnknownName);

  };

};


#endif  // _RT_COS_SCHEDULING_IDL_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -