Class: Sentry::Metrics::Metric
- Inherits:
-
Object
- Object
- Sentry::Metrics::Metric
show all
- Defined in:
- lib/sentry/metrics/metric.rb
Instance Method Summary
collapse
Instance Method Details
#add(value) ⇒ Object
6
7
8
|
# File 'lib/sentry/metrics/metric.rb', line 6
def add(value)
raise NotImplementedError
end
|
#serialize ⇒ Object
10
11
12
|
# File 'lib/sentry/metrics/metric.rb', line 10
def serialize
raise NotImplementedError
end
|
#weight ⇒ Object
14
15
16
|
# File 'lib/sentry/metrics/metric.rb', line 14
def weight
raise NotImplementedError
end
|