MultiReceiver
public
class
MultiReceiver
extends Object
implements
IShellOutputReceiver
| java.lang.Object | |
| ↳ | com.android.ddmlib.MultiReceiver |
Base implementation of IShellOutputReceiver, that takes multiple instances of IShellOutputReceiver and broadcast the received data to all of them.
Summary
Public constructors | |
|---|---|
MultiReceiver(IShellOutputReceiver... receivers)
|
|
Public methods | |
|---|---|
void
|
addOutput(byte[] data, int offset, int length)
Called every time some new data is available. |
void
|
flush()
Called at the end of the process execution (unless the process was canceled). |
boolean
|
isCancelled()
Cancel method to stop the execution of the remote shell command. |
Public constructors
MultiReceiver
public MultiReceiver (IShellOutputReceiver... receivers)
| Parameters | |
|---|---|
receivers |
IShellOutputReceiver |
Public methods
addOutput
public void addOutput (byte[] data,
int offset,
int length)Called every time some new data is available.
| Parameters | |
|---|---|
data |
byte: The new data. |
offset |
int: The offset at which the new data starts. |
length |
int: The length of the new data. |
flush
public void flush ()
Called at the end of the process execution (unless the process was canceled). This allows the receiver to terminate and flush whatever data was not yet processed.
isCancelled
public boolean isCancelled ()
Cancel method to stop the execution of the remote shell command.
| Returns | |
|---|---|
boolean |
true to cancel the execution of the command. |