Class: AppProfiler::Backend::BaseBackend
- Inherits:
-
Object
- Object
- AppProfiler::Backend::BaseBackend
show all
- Defined in:
- lib/app_profiler/backend/base_backend.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.name ⇒ Object
31
32
33
|
# File 'lib/app_profiler/backend/base_backend.rb', line 31
def name
raise NotImplementedError
end
|
.run_lock ⇒ Object
27
28
29
|
# File 'lib/app_profiler/backend/base_backend.rb', line 27
def run_lock
@run_lock ||= Mutex.new
end
|
Instance Method Details
#results ⇒ Object
18
19
20
|
# File 'lib/app_profiler/backend/base_backend.rb', line 18
def results
raise NotImplementedError
end
|
#run(params = {}, &block) ⇒ Object
6
7
8
|
# File 'lib/app_profiler/backend/base_backend.rb', line 6
def run(params = {}, &block)
raise NotImplementedError
end
|
#running? ⇒ Boolean
22
23
24
|
# File 'lib/app_profiler/backend/base_backend.rb', line 22
def running?
raise NotImplementedError
end
|
#start(params = {}) ⇒ Object
10
11
12
|
# File 'lib/app_profiler/backend/base_backend.rb', line 10
def start(params = {})
raise NotImplementedError
end
|
#stop ⇒ Object
14
15
16
|
# File 'lib/app_profiler/backend/base_backend.rb', line 14
def stop
raise NotImplementedError
end
|