cim_boundedpriorityschedulingelement.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 37 行

MOF
37
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_BoundedPrioritySchedulingElement// ==================================================================   [UMLPackagePath ( "CIM::Network::QoS" ), Version ( "2.7.0" ),     Description (       "This class is a subclass of the class PriorityScheduling "       "Element, which is itself derived from the abstract class "       "SchedulingElement. As is the case with all subclasses of "       "SchedulingElement, the input associated with an instance of "       "BoundedPrioritySchedulingElement is of one of two types: "       "either a queue, or another scheduler. BoundedPriority "       "SchedulingElement adds an upper bound (BandwidthBound in "       "kilobits per second) on how much traffic can be handled from "       "an input. This data is specific to that one input. It is "       "needed when bounded strict priority scheduling is performed. "       "Note that this class inherits from its superclass the "       "restriction of the inherited boolean property WorkConserving "       "to TRUE.")]class CIM_BoundedPrioritySchedulingElement : CIM_PrioritySchedulingElement {      [Override ( "WorkConserving" )]   boolean WorkConserving = TRUE;      [Description (          "A 32-bit unsigned integer that defines the upper limit on "          "the amount of traffic that can be handled from the input "          "(through this SchedulingElement). This is not a shaped "          "upper bound, since bursts can occur. It is a strict bound, "          "limiting the impact of the input. Units are kilobits per "          "second."),        Units ( "KiloBits per Second" )]   uint32 BandwidthBound;};

⌨️ 快捷键说明

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