mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
12 lines
358 B
Java
12 lines
358 B
Java
package org.briarproject.api.invitation;
|
|
|
|
import org.briarproject.api.identity.AuthorId;
|
|
|
|
/** Creates tasks for exchanging invitations with remote peers. */
|
|
public interface InvitationTaskFactory {
|
|
|
|
/** Creates a task using the given pseudonym and invitation codes. */
|
|
InvitationTask createTask(AuthorId localAuthorId, int localCode,
|
|
int remoteCode);
|
|
}
|