Class: IceMX::ChildInvocationMetrics
- Inherits:
-
Metrics
- Object
- Ice::Value
- Metrics
- IceMX::ChildInvocationMetrics
- Defined in:
- lib/Ice/Metrics.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#replySize ⇒ Object
Returns the value of attribute replySize.
-
#size ⇒ Object
Returns the value of attribute size.
Attributes inherited from Metrics
#current, #failures, #id, #total, #totalLifetime
Attributes inherited from Ice::Value
Instance Method Summary collapse
-
#initialize(id = '', total = 0, current = 0, totalLifetime = 0, failures = 0, size = 0, replySize = 0) ⇒ ChildInvocationMetrics
constructor
A new instance of ChildInvocationMetrics.
Methods inherited from Ice::Value
#ice_getSlicedData, #ice_id, ice_staticId, #inspect
Constructor Details
#initialize(id = '', total = 0, current = 0, totalLifetime = 0, failures = 0, size = 0, replySize = 0) ⇒ ChildInvocationMetrics
Returns a new instance of ChildInvocationMetrics.
229 230 231 232 233 |
# File 'lib/Ice/Metrics.rb', line 229 def initialize(id='', total=0, current=0, totalLifetime=0, failures=0, size=0, replySize=0) super(id, total, current, totalLifetime, failures) @size = size @replySize = replySize end |
Instance Attribute Details
#replySize ⇒ Object
Returns the value of attribute replySize.
235 236 237 |
# File 'lib/Ice/Metrics.rb', line 235 def replySize @replySize end |
#size ⇒ Object
Returns the value of attribute size.
235 236 237 |
# File 'lib/Ice/Metrics.rb', line 235 def size @size end |