yet_another_json_isolate 1.1.1 yet_another_json_isolate: ^1.1.1 copied to clipboard
Package to simplify and improve JSON parsing in isolates by keeping one isolate running per instance.
Yet Another Json Isolate #
Dart package for simple JSON parsing using isolates, because the world can never have enough JSON parsers.
Usage #
// initialize an `YAJsonIsolate` instance
final isolate = YAJsonIsolate()..initialize();
// serialize a JSON using an isolate
final requestBody = await isolate.encode(requestObject);
// deserialize a JSON string using an isolate
final json = await isolate.decode(responseBody);
// dispose when no longer needed
isolate.dispose();