rmawatson/flutter_isolate

manage FlutterIsolate like Thread Pool

Opened this issue · 0 comments

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.