isolate_manager
isolate_manager copied to clipboard
Create multiple long-lived isolates for the Functions, supports Worker on the Web (with the effective generator) and WASM compilation.
Thank you very much
In my example, I want to call IsolateManager.sendMessage once and receive one hundred data translated to the main thread from the isolate. I found through debugging that IsolateManagerController calls sendResult...
Bad state: The BackgroundIsolateBinaryMessenger.instance value is invalid until BackgroundIsolateBinaryMessenger.ensureInitialized is executed.
## To Do - [ ] A generator runs along with the `build_runner` command. - [x] A generator run by `dart run isolate_manager:generate` command. ## Concept: This is a function...
The generator didn't work when I tried. ``` dart run isolate_manager:generate Building package executable... (7.7s) Built isolate_manager:generate. >> Generating the single Workers... Parsing the `IsolateManagerWorker` inside directory: lib... Total files...
This PR introduces some basic refactoring to improve code readability and maintainability: - Added type annotations where possible for better static typing - Replaced variables with `final` where applicable to...
I needed the functionality to run a `Stream` in an isolate and have it send updates back to the main thread, so I implemented it. Additionally, I extended support for...
Hello, I encountered an issue while using the isolate-manager package. It seems that I’m unable to pass a Map as an input or output when using isolate-manager, which leads to...
I'm encountering performance issues when picking large Excel files in my Flutter web app. The UI becomes unresponsive while processing these files, likely because of heavy file operations being done...