mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
9 lines
187 B
Java
9 lines
187 B
Java
package org.briarproject.api.sync;
|
|
|
|
public interface MessageFactory {
|
|
|
|
Message createMessage(GroupId g, long timestamp, byte[] body);
|
|
|
|
Message createMessage(MessageId m, byte[] raw);
|
|
}
|