]> nmode's Git Repositories - signal-cli/blobdiff - src/main/java/cli/TextSecure.java
Add possibility to send messages via dbus daemon
[signal-cli] / src / main / java / cli / TextSecure.java
index 011e696f63c1cb1e8190ea2faf971e9feb07565a..3220ba00b2e8217678b9dd1a5f46ad0172ae5c1f 100644 (file)
@@ -9,5 +9,9 @@ import java.util.List;
 public interface TextSecure extends DBusInterface {
     void sendMessage(String message, List<String> attachments, String recipient) throws EncapsulatedExceptions, AttachmentInvalidException, IOException;
 
+    void sendMessage(String message, List<String> attachments, List<String> recipients) throws EncapsulatedExceptions, AttachmentInvalidException, IOException;
+
+    void sendEndSessionMessage(List<String> recipients) throws IOException, EncapsulatedExceptions;
+
     void sendGroupMessage(String message, List<String> attachments, byte[] groupId) throws EncapsulatedExceptions, GroupNotFoundException, AttachmentInvalidException, IOException;
 }