Struct neon::event::EventQueue[][src]

pub struct EventQueue { /* fields omitted */ }
Expand description

Queue for scheduling Rust closures to execute on the 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]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.