Implement sendPayment notification command

This commit is contained in:
AsamK 2022-05-19 20:54:15 +02:00
parent b18991b9fb
commit 7587a60387
6 changed files with 90 additions and 0 deletions

View file

@ -388,6 +388,13 @@ public class DbusManagerImpl implements Manager {
groupId));
}
@Override
public SendMessageResults sendPaymentNotificationMessage(
final byte[] receipt, final String note, final RecipientIdentifier.Single recipient
) throws IOException {
throw new UnsupportedOperationException();
}
@Override
public SendMessageResults sendEndSessionMessage(final Set<RecipientIdentifier.Single> recipients) throws IOException {
signal.sendEndSessionMessage(recipients.stream().map(RecipientIdentifier.Single::getIdentifier).toList());