mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
made the author creation single-threaded again in the LifecycleManager, removed redundant code
9 lines
280 B
Java
9 lines
280 B
Java
package org.briarproject.api.invitation;
|
|
|
|
/** Creates tasks for exchanging invitations with remote peers. */
|
|
public interface InvitationTaskFactory {
|
|
|
|
/** Creates a task using the local author and invitation codes. */
|
|
InvitationTask createTask(int localCode, int remoteCode);
|
|
}
|