Struct neon::prelude::EventQueue[][src]

pub struct EventQueue { /* fields omitted */ }

Queue for scheduling Rust closures to execute on tge JavaScript main thread

Example

The following example spawns a standard Rust thread to complete a computation and calls back to a JavaScript function asynchronously with the result.

fn async_fibonacci(mut cx: FunctionContext) -> JsResult<JsUndefined> {
    // These types (`f64`, `Root<JsFunction>`, `EventQueue`) may all be sent
    // across threads.
    let n = cx.argument::<JsNumber>(0)?.value(&mut cx);
    let callback = cx.argument::<JsFunction>(1)?.root(&mut cx);
    let queue = cx.queue();

    // Spawn a thread to complete the execution. This will _not_ block the
    // JavaScript event loop.
    std::thread::spawn(move || {
        let result = fibonacci(n);

        // Send a closure as a task to be executed by the JavaScript event
        // queue. This _will_ block the event queue while executing.
        queue.send(move |mut cx| {
            let callback = callback.into_inner(&mut cx);
            let this = cx.undefined();
            let null = cx.null();
            let args = vec![
                cx.null().upcast::<JsValue>(),
                cx.number(result).upcast(),
            ];
 
            callback.call(&mut cx, this, args)?;

            Ok(())
        });
    });
 
    Ok(cx.undefined())
}

Implementations

impl EventQueue[src]

pub fn new<'a, C: Context<'a>>(cx: &mut C) -> Self[src]

Creates an unbounded queue for scheduling closures on the JavaScript main thread

pub fn unref<'a, C: Context<'a>>(&mut self, cx: &mut C) -> &mut Self[src]

Allow the Node event loop to exit while this EventQueue exists. Idempotent

pub fn reference<'a, C: Context<'a>>(&mut self, cx: &mut C) -> &mut Self[src]

Prevent the Node event loop from exiting while this EventQueue exists. (Default) Idempotent

pub fn send<F>(&self, f: F) where
    F: FnOnce(TaskContext<'_>) -> NeonResult<()> + Send + 'static, 
[src]

Schedules a closure to execute on the JavaScript thread that created this EventQueue Panics if there is a libuv error

pub fn try_send<F>(&self, f: F) -> Result<(), EventQueueError> where
    F: FnOnce(TaskContext<'_>) -> NeonResult<()> + Send + 'static, 
[src]

Schedules a closure to execute on the JavaScript thread that created this EventQueue Returns an Error if the task could not be scheduled.

pub fn has_ref(&self) -> bool[src]

Returns a boolean indicating if this EventQueue will prevent the Node event queue from exiting.

Trait Implementations

impl Debug for EventQueue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.