mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
(transport name, key, value) triples. This makes it possible for each transport plugin to update its locally stored properties atomically.
14 lines
318 B
Java
14 lines
318 B
Java
package net.sf.briar.protocol;
|
|
|
|
import java.util.Map;
|
|
|
|
import net.sf.briar.api.protocol.Transports;
|
|
|
|
class TransportFactoryImpl implements TransportFactory {
|
|
|
|
public Transports createTransports(Map<String, Map<String, String>> transports,
|
|
long timestamp) {
|
|
return new TransportsImpl(transports, timestamp);
|
|
}
|
|
}
|