Class: Cloud66::Metrics::FrameworkBase
- Inherits:
-
Object
- Object
- Cloud66::Metrics::FrameworkBase
show all
- Defined in:
- lib/cloud66/metrics/framework_base.rb
Class Method Summary
collapse
Class Method Details
.detected? ⇒ Boolean
4
5
6
7
8
|
# File 'lib/cloud66/metrics/framework_base.rb', line 4
def self.detected?
return @detected unless @detected.nil?
@detected = detected_concrete
return @detected
end
|
.name ⇒ Object
10
11
12
|
# File 'lib/cloud66/metrics/framework_base.rb', line 10
def self.name
return name_concrete
end
|
.queue_array ⇒ Object
14
15
16
|
# File 'lib/cloud66/metrics/framework_base.rb', line 14
def self.queue_array
return queue_array_concrete
end
|