Package org.kohsuke.sfx4j
Class Proc
- java.lang.Object
-
- org.kohsuke.sfx4j.Proc
-
class Proc extends java.lang.Object
External process wrapper.stdout/stderr of the process will be sent to the specified stream.
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
Proc.CopyThread
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
join()
-
-
-
Constructor Detail
-
Proc
public Proc(java.lang.String cmdLine) throws java.io.IOException
Launches a process- Throws:
java.io.IOException
-
Proc
public Proc(java.lang.String cmdLine, java.io.OutputStream stdout, java.io.OutputStream stderr) throws java.io.IOException
Launches a process- Throws:
java.io.IOException
-
-