First working interface

This commit is contained in:
2026-04-21 19:38:20 -03:00
parent 9efd27afa5
commit dbf5e5c1ac
42 changed files with 1211 additions and 95 deletions

View File

@@ -21,11 +21,7 @@ Future<void> main() async {
backoffFactor: settings.reconnectBackoffFactor,
);
final decoder = DecoderImpl(batchInterval: settings.decoderBatchInterval);
// Native isolate decoders need an explicit start.
if (decoder is DecoderIsolate) {
await decoder.start();
}
await decoder.start();
final session = SessionController(
transport: transport,