Class: Linkage::Runner
- Inherits:
-
Object
- Object
- Linkage::Runner
- Defined in:
- lib/linkage/runner.rb
Overview
Use this class to run a configuration created by Dataset#link_with.
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) config
readonly
Returns the value of attribute config.
Instance Method Summary (collapse)
- - (Object) execute abstract
-
- (Runner) initialize(config, uri)
constructor
A new instance of Runner.
Constructor Details
- (Runner) initialize(config, uri)
A new instance of Runner
10 11 12 13 |
# File 'lib/linkage/runner.rb', line 10 def initialize(config, uri) @config = config @uri = uri end |
Instance Attribute Details
- (Object) config (readonly)
Returns the value of attribute config
4 5 6 |
# File 'lib/linkage/runner.rb', line 4 def config @config end |
Instance Method Details
- (Object) execute
This method is abstract.
16 17 18 |
# File 'lib/linkage/runner.rb', line 16 def execute raise NotImplementedError end |