Class: ActiveSalesforce::BoxcarCommand::Base
- Inherits:
-
Object
- Object
- ActiveSalesforce::BoxcarCommand::Base
- Defined in:
- lib/boxcar_command.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#verb ⇒ Object
readonly
Returns the value of attribute verb.
Instance Method Summary collapse
- #after_execute(result) ⇒ Object
-
#initialize(connection, verb, args) ⇒ Base
constructor
A new instance of Base.
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
#args ⇒ Object (readonly)
Returns the value of attribute args.
25 26 27 |
# File 'lib/boxcar_command.rb', line 25 def args @args end |
#verb ⇒ Object (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 |