ShellOutputReceiverStream

public final class ShellOutputReceiverStream
extends Object

Objeto java.lang.
   ↳ 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 IShellOutputReceiver determinado.

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, que puede usar este método con pruebas con recursos sin buscar un receptor nulo.

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 ()

escritura

public void write (byte[] b)

Parámetros
b byte

escritura

public void write (byte[] b, 
                int off, 
                int len)

Parámetros
b byte

off int

len int

escritura

public void write (int b)

Parámetros
b int