mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-20 22:24:23 +01:00
Move receive thread handling to manager
This commit is contained in:
@@ -423,6 +423,21 @@ public class DbusManagerImpl implements Manager {
|
||||
signal.sendSyncRequest();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addReceiveHandler(final ReceiveMessageHandler handler) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeReceiveHandler(final ReceiveMessageHandler handler) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isReceiving() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void receiveMessages(final ReceiveMessageHandler handler) throws IOException {
|
||||
throw new UnsupportedOperationException();
|
||||
|
||||
Reference in New Issue
Block a user