
Logs will be maintained and appended even when the main UI is not bound to the service. This also lets us log without filling a Handler with a bunch of messages we might just throw away anyway.
9 lines
126 B
Plaintext
9 lines
126 B
Plaintext
package org.musicpd;
|
|
|
|
interface IMainCallback
|
|
{
|
|
void onStarted();
|
|
void onStopped();
|
|
void onError(String error);
|
|
}
|