mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
13 lines
322 B
Java
13 lines
322 B
Java
package org.briarproject.api.clients;
|
|
|
|
import org.briarproject.api.sync.GroupId;
|
|
import org.briarproject.api.sync.MessageId;
|
|
|
|
public interface QueueMessageFactory {
|
|
|
|
QueueMessage createMessage(GroupId groupId, long timestamp,
|
|
long queuePosition, byte[] body);
|
|
|
|
QueueMessage createMessage(MessageId id, byte[] raw);
|
|
}
|