API
Interactorâ
Use Interactor
when you need to register a worker.
tip
You could call the shutdown
method if you want to stop all workers.
Declaration
class Interactor {
Interactor({String? libraryPath})
Future<void> shutdown() async
SendPort worker(InteractorConfiguration configuration)
}
Example
final interactor = Interactor();
final worker = InteractorWorker(interactor.worker(InteractorDefaults.worker()));
/* Do some work */
await interactor.shutdown();