ShellOutputReceiverStream
public
final
class
ShellOutputReceiverStream
extends Object
java.lang.Object | |
↳ | com.android.tradefed.util.ShellOutputReceiverStream |
Es la subclase de utilidad de OutputStream que escribe en un IShellOutputReceiver.
Resumen
Constructores públicos | |
---|---|
ShellOutputReceiverStream(IShellOutputReceiver receiver)
Crea un adaptador nuevo para el |
|
ShellOutputReceiverStream(IShellOutputReceiver receiver, FileOutputStream fileOutput)
|
Métodos públicos | |
---|---|
void
|
close()
|
void
|
flush()
|
void
|
write(byte[] b)
|
void
|
write(byte[] b, int off, int len)
|
void
|
write(int b)
|
Constructores públicos
ShellOutputReceiverStream
public ShellOutputReceiverStream (IShellOutputReceiver receiver)
Crea un adaptador nuevo para el IShellOutputReceiver
determinado.
Es válido proporcionar un receptor nulo aquí para simplificar el código usando el adaptador, es decir, para que pueda usar esto con la función de prueba con recursos sin verificar si hay un receptor nulo en sí.
Parámetros | |
---|---|
receiver |
IShellOutputReceiver |
ShellOutputReceiverStream
public ShellOutputReceiverStream (IShellOutputReceiver receiver, FileOutputStream fileOutput)
Parámetros | |
---|---|
receiver |
IShellOutputReceiver |
fileOutput |
FileOutputStream |
Métodos públicos
cerrar
public void close ()
vaciar
public void flush ()
escribir
public void write (byte[] b)
Parámetros | |
---|---|
b |
byte |
escribir
public void write (byte[] b, int off, int len)
Parámetros | |
---|---|
b |
byte |
off |
int |
len |
int |
escribir
public void write (int b)
Parámetros | |
---|---|
b |
int |