rmawatson / flutter_isolate

Launch an isolate that can use flutter plugins.
MIT License
269 stars 80 forks source link

manage FlutterIsolate like Thread Pool #148

Open huangli44 opened 9 months ago

huangli44 commented 9 months ago

To compress a video and process it within an isolate, I have seen people manually managing thread pools using native isolate. The main idea is to cache the isolate and then use send to execute tasks. However, in flutterIsolate , there doesn't seem to be a similar method available. I want to know how to manage isolate execution tasks like a thread pool.