Class: CodeRunner::Gs2::ListSubmitter
- Inherits:
-
Object
- Object
- CodeRunner::Gs2::ListSubmitter
- Includes:
- SYSTEM_MODULE
- Defined in:
- lib/gs2crmod/gs2.rb
Instance Attribute Summary collapse
-
#executable_location ⇒ Object
readonly
Returns the value of attribute executable_location.
-
#executable_name ⇒ Object
readonly
Returns the value of attribute executable_name.
-
#job_identifier ⇒ Object
readonly
Returns the value of attribute job_identifier.
-
#parameter_string ⇒ Object
readonly
Returns the value of attribute parameter_string.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(runner, nprocs, list_file, jid) ⇒ ListSubmitter
constructor
A new instance of ListSubmitter.
- #rcp ⇒ Object
Constructor Details
#initialize(runner, nprocs, list_file, jid) ⇒ ListSubmitter
Returns a new instance of ListSubmitter.
822 823 824 825 826 827 828 |
# File 'lib/gs2crmod/gs2.rb', line 822 def initialize(runner, nprocs, list_file, jid) @executable_location = runner.executable_location @executable_name = runner.executable_name @parameter_string = list_file @job_identifier = jid @nprocs = nprocs end |
Instance Attribute Details
#executable_location ⇒ Object (readonly)
Returns the value of attribute executable_location.
820 821 822 |
# File 'lib/gs2crmod/gs2.rb', line 820 def executable_location @executable_location end |
#executable_name ⇒ Object (readonly)
Returns the value of attribute executable_name.
820 821 822 |
# File 'lib/gs2crmod/gs2.rb', line 820 def executable_name @executable_name end |
#job_identifier ⇒ Object (readonly)
Returns the value of attribute job_identifier.
821 822 823 |
# File 'lib/gs2crmod/gs2.rb', line 821 def job_identifier @job_identifier end |
#parameter_string ⇒ Object (readonly)
Returns the value of attribute parameter_string.
820 821 822 |
# File 'lib/gs2crmod/gs2.rb', line 820 def parameter_string @parameter_string end |
Class Method Details
.rcp ⇒ Object
832 833 834 |
# File 'lib/gs2crmod/gs2.rb', line 832 def self.rcp @rcp ||= CodeRunner::Run::RunClassPropertyFetcher.new(self) end |
Instance Method Details
#rcp ⇒ Object
829 830 831 |
# File 'lib/gs2crmod/gs2.rb', line 829 def rcp self.class.rcp end |