Module: Riveter::Service

Extended by:
ActiveSupport::Concern
Includes:
AssociatedTypeRegistry
Included in:
Base
Defined in:
lib/riveter/service.rb

Defined Under Namespace

Modules: ClassMethods Classes: Base

Instance Method Summary collapse

Instance Method Details

#perform(command, *args) ⇒ Object

override in derived classes

Raises:

  • (NotImplementedError)


13
14
15
16
17
18
19
20
# File 'lib/riveter/service.rb', line 13

def perform(command, *args)

  #
  # use the given command's attributes to perform the action
  #

  raise NotImplementedError
end