API
InteractorWorkerâ
Use InteractorWorker
when you need to:
- register an InteractorConsumer
- register an InteractorProducer
Declaration
class InteractorWorker {
get bool active => _active;
get int id => _interactor.ref.id;
get int descriptor => _descriptor;
InteractorPayloads get payloads => _payloads;
InteractorBuffers get buffers => _buffers;
InteractorDatas get datas => _datas;
InteractorWorker(SendPort toInteractor)
Future<void> initialize() async
void activate()
void consumer(InteractorConsumer declaration)
T producer<T extends InteractorProducer>(T provider)
}
Pool providersâ
InteractorPayloads get payloads => _payloads
: provides you pool for typed payloads.InteractorBuffers get buffers => _buffers
: provides you pool for fixed buffers.InteractorDatas get datas => _datas
: provides you alloc/free allocator.
Example
final worker = InteractorWorker(interactor.worker(InteractorDefaults.worker()));
await worker.initialize();
worker.consumer(/* your consumer */);
worker.producer(/* your producer */);
worker.activate();
/* your code */
await interactor.shutdown();
tip
You have to call initialize
to set up and launch io_uring event pool
tip
You have to call activate
to set up registered consumers and producers. You should call ONLY after their registration.
References
- See InteractorConfiguration
- See InteractorDefaults
- See InteractorPayloads
- See InteractorBuffers
- See InteractorDatas