Class: ActiveSalesforce::BoxcarCommand::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/boxcar_command.rb

Direct Known Subclasses

Delete, Insert, Update

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(connection, verb, args) ⇒ Base

Returns a new instance of Base.



27
28
29
30
31
# File 'lib/boxcar_command.rb', line 27

def initialize(connection, verb, args)
  @connection = connection
  @verb = verb
  @args = args
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



25
26
27
# File 'lib/boxcar_command.rb', line 25

def args
  @args
end

#verbObject (readonly)

Returns the value of attribute verb.



25
26
27
# File 'lib/boxcar_command.rb', line 25

def verb
  @verb
end

Instance Method Details

#after_execute(result) ⇒ Object



33
34
# File 'lib/boxcar_command.rb', line 33

def after_execute(result)
end