public interface WriteAction
Modifier and Type | Interface and Description |
---|---|
static class |
WriteAction.Default
Use this default implementation to write data directly without any encoding to OutputStream.
|
Modifier and Type | Method and Description |
---|---|
void |
execute(byte[] data,
java.io.OutputStream outputStream)
Implement this behaviour to provide custom Write Action for audio which
requires
data to encode. |
void execute(byte[] data, java.io.OutputStream outputStream) throws java.io.IOException
data
to encode. So here One can encode the data
according to chosen audio format.java.io.IOException