API
InteractorConsumerâ
Use InteractorConsumer
when you need to define a class for handling calls from the Native side.
Declaration
abstract interface class InteractorConsumer {
List<InteractorCallback> callbacks();
}
Example
class TestNativeConsumer implements InteractorConsumer {
void test(InteractorNotification message) { /* Handle */ };
List<InteractorCallback> callbacks() => [test];
}
Registration
worker.consumer(TestNativeConsumer());
Calling
interactor_message* message = interactor_native_allocate_message(interactor);
message->id = // Your message id.
message->input = // Your message input.
message->input_size = // Your message input size.
message->owner = 0; // Index of the consumer inside the worker.
message->method = 0; // Index of the callback inside the consumer.
interactor_native_call_dart(interactor, target, message);
interactor_native_submit(interactor);
InteractorCallbackâ
Declaration
typedef InteractorCallback = FutureOr<void> Function(InteractorNotification notification);