Interface PortAudioStreamCallback
-
public interface PortAudioStreamCallback- Author:
- Lyubomir Marinov
-
-
Field Summary
Fields Modifier and Type Field Description static intRESULT_ABORT"Abort" result code.static intRESULT_COMPLETE"Complete" result code.static intRESULT_CONTINUE"Continue" result code.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcallback(ByteBuffer input, ByteBuffer output)Callback.voidfinishedCallback()Finished callback.
-
-
-
Field Detail
-
RESULT_ABORT
static final int RESULT_ABORT
"Abort" result code.- See Also:
- Constant Field Values
-
RESULT_COMPLETE
static final int RESULT_COMPLETE
"Complete" result code.- See Also:
- Constant Field Values
-
RESULT_CONTINUE
static final int RESULT_CONTINUE
"Continue" result code.- See Also:
- Constant Field Values
-
-
Method Detail
-
callback
int callback(ByteBuffer input, ByteBuffer output)
Callback.- Parameters:
input- input ByteBufferoutput- output ByteBuffer- Returns:
-
finishedCallback
void finishedCallback()
Finished callback.
-
-