Class: Jenkins::Launcher::Proc
- Inherits:
-
Object
- Object
- Jenkins::Launcher::Proc
show all
- Includes:
- Plugin::Wrapper
- Defined in:
- lib/jenkins/launcher.rb
Instance Attribute Summary
#native
Instance Method Summary
collapse
#initialize
extended, #implemented, #included
#behaves_as
Instance Method Details
#alive? ⇒ Boolean
11
12
13
|
# File 'lib/jenkins/launcher.rb', line 11
def alive?
@native.isAlive()
end
|
#join ⇒ Object
15
16
17
|
# File 'lib/jenkins/launcher.rb', line 15
def join
@native.join()
end
|
#kill ⇒ Object
19
20
21
22
|
# File 'lib/jenkins/launcher.rb', line 19
def kill
@native.kill()
nil
end
|
#stderr ⇒ Object
32
33
34
|
# File 'lib/jenkins/launcher.rb', line 32
def stderr
@native.getStderr().to_io
end
|
#stdin ⇒ Object
24
25
26
|
# File 'lib/jenkins/launcher.rb', line 24
def stdin
@native.getStdin().to_io
end
|
#stdout ⇒ Object
28
29
30
|
# File 'lib/jenkins/launcher.rb', line 28
def stdout
@native.getStdout().to_io
end
|