Class: AppProfiler::Backend::BaseBackend

Inherits:
Object
  • Object
show all
Defined in:
lib/app_profiler/backend/base_backend.rb

Direct Known Subclasses

StackprofBackend, VernierBackend

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.nameObject

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/app_profiler/backend/base_backend.rb', line 6

def self.name
  raise NotImplementedError
end

.run_lockObject



31
32
33
# File 'lib/app_profiler/backend/base_backend.rb', line 31

def run_lock
  @run_lock ||= Mutex.new
end

Instance Method Details

#resultsObject

Raises:

  • (NotImplementedError)


22
23
24
# File 'lib/app_profiler/backend/base_backend.rb', line 22

def results
  raise NotImplementedError
end

#run(params = {}, &block) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/app_profiler/backend/base_backend.rb', line 10

def run(params = {}, &block)
  raise NotImplementedError
end

#running?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


26
27
28
# File 'lib/app_profiler/backend/base_backend.rb', line 26

def running?
  raise NotImplementedError
end

#start(params = {}) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/app_profiler/backend/base_backend.rb', line 14

def start(params = {})
  raise NotImplementedError
end

#stopObject

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/app_profiler/backend/base_backend.rb', line 18

def stop
  raise NotImplementedError
end