Function dart_sys::Dart_Post

source ·
pub unsafe extern "C" fn Dart_Post(
    port_id: Dart_Port,
    object: Dart_Handle
) -> bool
Expand description

Posts a message for some isolate. The message is a serialized object.

Requires there to be a current isolate.

For posting messages outside of an isolate see \ref Dart_PostCObject.

\param port_id The destination port. \param object An object from the current isolate.

\return True if the message was posted.