professional audio NDK
1.1.3
|
An interface for sending message to UI. More...
#include <IAPAResponseInterface.h>
Public Member Functions | |
IAPAResponseInterface () | |
virtual void | responseToService (const char *message)=0 |
virtual void | responseToService (const int32_t ext1, const size_t len, void const *data)=0 |
virtual void | responseToService (const int id, const char *message)=0 |
An interface for sending message to UI.
It is used for sending message to UI(Android java components)
You don't need to use this interface.
All of function on it are wrapping in the IAPAInterface.
Please use IAPAInterface.
When you want to send message, Use the IAPAInterface.response
IAPAResponseInterface::IAPAResponseInterface | ( | ) | [inline] |
Constructor
virtual void IAPAResponseInterface::responseToService | ( | const char * | message | ) | [pure virtual] |
Send a message to UI
message | a text message |
virtual void IAPAResponseInterface::responseToService | ( | const int32_t | ext1, |
const size_t | len, | ||
void const * | data | ||
) | [pure virtual] |
Send a data to UI
ext1 | an extra parameter |
len | the written data size |
data | the sending data pointer |
virtual void IAPAResponseInterface::responseToService | ( | const int | id, |
const char * | message | ||
) | [pure virtual] |
Send a message to UI
id | an id |
message | a text message |