Package com.android.utils
Interface GrabProcessOutput.IProcessOutput
-
- Enclosing class:
- GrabProcessOutput
public static interface GrabProcessOutput.IProcessOutput
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
err(java.lang.String line)
Processes an stderr message line.void
out(java.lang.String line)
Processes an stdout message line.
-
-
-
Method Detail
-
out
void out(@Nullable java.lang.String line)
Processes an stdout message line.- Parameters:
line
- The stdout message line. Null when the reader reached the end of stdout.
-
err
void err(@Nullable java.lang.String line)
Processes an stderr message line.- Parameters:
line
- The stderr message line. Null when the reader reached the end of stderr.
-
-