mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
8 lines
187 B
Java
8 lines
187 B
Java
package org.briarproject.api.sync;
|
|
|
|
public interface GroupFactory {
|
|
|
|
/** Creates a group with the given client ID and descriptor. */
|
|
Group createGroup(ClientId c, byte[] descriptor);
|
|
}
|