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

📄 cim_ewmameterservice.mof

📁 Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por
💻 MOF
字号:
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_EWMAMeterService// ==================================================================   [UMLPackagePath ( "CIM::Network::QoS" ), Version ( "2.7.0" ),     Description (       "This is a concrete subclass of the MeterService class that "       "represents an exponentially weighted moving average meter. "       "This meter is a simple low-pass filter that measures the rate "       "of incoming packets over a small, fixed sampling interval. Any "       "admitted packet that pushes the average rate over a "       "pre-defined limit is defined to be non-conforming.")]class CIM_EWMAMeterService : CIM_MeterService {      [Description (          "This property is a 32-bit unsigned integer that defines the "          "average rate against which the sampled arrival rate of "          "packets should be measured. Any packet that causes the "          "sampled rate to exceed this rate is deemed non-conforming. "          "The value is specified in kilobits per second."),        Units ( "KiloBits Per Second" )]   uint32 AverageRate;      [Description (          "This property is a 64-bit unsigned integer that defines the "          "sampling interval used to measure the arrival rate. The "          "calculated rate is averaged over this interval and checked "          "against the AverageRate property. All packets whose "          "computed average arrival rate is less than the AverageRate "          "are deemed conforming. The value is specified in "          "microseconds."),        Units ( "MicroSeconds" )]   uint64 DeltaInterval;      [Description (          "This property is a 32-bit unsigned integer representing the "          "reciprocal of the time constant (e.g., frequency response) "          "of what is essentially a simple low-pass filter. For "          "example, the value 64 for this property represents a time "          "constant value of 1/64.")]   uint32 Gain;};

⌨️ 快捷键说明

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