mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
8 lines
232 B
Java
8 lines
232 B
Java
package org.briarproject.api.reliability;
|
|
|
|
public interface ReliabilityLayerFactory {
|
|
|
|
/** Returns a reliability layer that writes to the given lower layer. */
|
|
ReliabilityLayer createReliabilityLayer(WriteHandler writeHandler);
|
|
}
|