class CodeRunner::Veritas::ListSubmitter

Attributes

executable_location[R]
executable_name[R]
job_identifier[R]
parameter_string[R]

Public Class Methods

new(runner, nprocs, list_file, jid) click to toggle source
# File lib/veritascrmod/veritas.rb, line 225
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
rcp() click to toggle source
# File lib/veritascrmod/veritas.rb, line 235
def self.rcp
  @rcp ||= CodeRunner::Run::RunClassPropertyFetcher.new(self)
end

Public Instance Methods

rcp() click to toggle source
# File lib/veritascrmod/veritas.rb, line 232
def rcp
  self.class.rcp
end