Add transactional version of removePendingContact()

This commit is contained in:
Sebastian Kürten
2022-02-15 22:28:29 +01:00
parent 80cac277ac
commit 7ae91a984f
2 changed files with 17 additions and 3 deletions

View File

@@ -178,6 +178,12 @@ public interface ContactManager {
*/
void removePendingContact(PendingContactId p) throws DbException;
/**
* Removes a {@link PendingContact}.
*/
void removePendingContact(Transaction txn, PendingContactId p)
throws DbException;
/**
* Returns the contact with the given ID.
*/