mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 04:39:54 +01:00
Add method for UI and tests to get current timer.
This commit is contained in:
@@ -24,6 +24,13 @@ public interface AutoDeleteManager {
|
|||||||
*/
|
*/
|
||||||
int MINOR_VERSION = 0;
|
int MINOR_VERSION = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the auto-delete timer duration for the given contact. Use
|
||||||
|
* {@link #getAutoDeleteTimer(Transaction, ContactId, long)} if the timer
|
||||||
|
* will be used in an outgoing message.
|
||||||
|
*/
|
||||||
|
long getAutoDeleteTimer(Transaction txn, ContactId c) throws DbException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the auto-delete timer duration for the given contact, for use in
|
* Returns the auto-delete timer duration for the given contact, for use in
|
||||||
* a message with the given timestamp. The timestamp is stored.
|
* a message with the given timestamp. The timestamp is stored.
|
||||||
|
|||||||
@@ -78,6 +78,19 @@ class AutoDeleteManagerImpl
|
|||||||
db.removeGroup(txn, getGroup(c));
|
db.removeGroup(txn, getGroup(c));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long getAutoDeleteTimer(Transaction txn, ContactId c)
|
||||||
|
throws DbException {
|
||||||
|
try {
|
||||||
|
Group g = getGroup(db.getContact(txn, c));
|
||||||
|
BdfDictionary meta =
|
||||||
|
clientHelper.getGroupMetadataAsDictionary(txn, g.getId());
|
||||||
|
return meta.getLong(GROUP_KEY_TIMER, NO_AUTO_DELETE_TIMER);
|
||||||
|
} catch (FormatException e) {
|
||||||
|
throw new DbException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public long getAutoDeleteTimer(Transaction txn, ContactId c, long timestamp)
|
public long getAutoDeleteTimer(Transaction txn, ContactId c, long timestamp)
|
||||||
throws DbException {
|
throws DbException {
|
||||||
|
|||||||
Reference in New Issue
Block a user