mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
12 lines
263 B
Java
12 lines
263 B
Java
package org.briarproject.api.sync;
|
|
|
|
import org.briarproject.api.nullsafety.NotNullByDefault;
|
|
|
|
@NotNullByDefault
|
|
public interface MessageFactory {
|
|
|
|
Message createMessage(GroupId g, long timestamp, byte[] body);
|
|
|
|
Message createMessage(MessageId m, byte[] raw);
|
|
}
|