mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
13 lines
297 B
Java
13 lines
297 B
Java
package org.briarproject.api.clients;
|
|
|
|
import org.briarproject.api.db.DbException;
|
|
import org.briarproject.api.db.Transaction;
|
|
|
|
public interface Client {
|
|
|
|
/**
|
|
* Called at startup to create any local state needed by the client.
|
|
*/
|
|
void createLocalState(Transaction txn) throws DbException;
|
|
}
|