Struct napi::threadsafe_function::ThreadsafeFunction[][src]

pub struct ThreadsafeFunction<T: 'static, ES: T = CalleeHandled> { /* fields omitted */ }
Expand description

Communicate with the addon’s main thread by invoking a JavaScript function from other threads.

Example

An example of using ThreadsafeFunction:

#[macro_use]
extern crate napi_derive;

use std::thread;

use napi::{
    threadsafe_function::{
        ThreadSafeCallContext, ThreadsafeFunctionCallMode, ThreadsafeFunctionReleaseMode,
    },
    CallContext, Error, JsFunction, JsNumber, JsUndefined, Result, Status,
};

#[js_function(1)]
pub fn test_threadsafe_function(ctx: CallContext) -> Result<JsUndefined> {
  let func = ctx.get::<JsFunction>(0)?;

  let tsfn =
      ctx
          .env
          .create_threadsafe_function(&func, 0, |ctx: ThreadSafeCallContext<Vec<u32>>| {
            ctx.value
                .iter()
                .map(|v| ctx.env.create_uint32(*v))
                .collect::<Result<Vec<JsNumber>>>()
          })?;

  let tsfn_cloned = tsfn.clone();

  thread::spawn(move || {
      let output: Vec<u32> = vec![0, 1, 2, 3];
      // It's okay to call a threadsafe function multiple times.
      tsfn.call(Ok(output.clone()), ThreadsafeFunctionCallMode::Blocking);
  });

  thread::spawn(move || {
      let output: Vec<u32> = vec![3, 2, 1, 0];
      // It's okay to call a threadsafe function multiple times.
      tsfn_cloned.call(Ok(output.clone()), ThreadsafeFunctionCallMode::NonBlocking);
  });

  ctx.env.get_undefined()
}

Implementations

impl<T: 'static, ES: T> ThreadsafeFunction<T, ES>[src]

pub fn create<V: NapiRaw, R: 'static + Send + FnMut(ThreadSafeCallContext<T>) -> Result<Vec<V>>>(
    env: napi_env,
    func: &JsFunction,
    max_queue_size: usize,
    callback: R
) -> Result<Self>
[src]

See napi_create_threadsafe_function for more information.

pub fn refer(&mut self, env: &Env) -> Result<()>[src]

See napi_ref_threadsafe_function for more information.

“ref” is a keyword so that we use “refer” here.

pub fn unref(&mut self, env: &Env) -> Result<()>[src]

See napi_unref_threadsafe_function for more information.

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

pub fn abort(self) -> Result<()>[src]

pub fn raw(&self) -> napi_threadsafe_function[src]

Get the raw ThreadSafeFunction pointer

impl<T: 'static> ThreadsafeFunction<T, CalleeHandled>[src]

pub fn call(&self, value: Result<T>, mode: ThreadsafeFunctionCallMode) -> Status[src]

See napi_call_threadsafe_function for more information.

impl<T: 'static> ThreadsafeFunction<T, Fatal>[src]

pub fn call(&self, value: T, mode: ThreadsafeFunctionCallMode) -> Status[src]

See napi_call_threadsafe_function for more information.

Trait Implementations

impl<T: 'static, ES: T> Clone for ThreadsafeFunction<T, ES>[src]

fn clone(&self) -> Self[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: 'static, ES: T> Drop for ThreadsafeFunction<T, ES>[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

impl<T, ES: T> Send for ThreadsafeFunction<T, ES>[src]

impl<T, ES: T> Sync for ThreadsafeFunction<T, ES>[src]

Auto Trait Implementations

impl<T, ES> RefUnwindSafe for ThreadsafeFunction<T, ES> where
    ES: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, ES> Unpin for ThreadsafeFunction<T, ES> where
    ES: Unpin,
    T: Unpin

impl<T, ES> UnwindSafe for ThreadsafeFunction<T, ES> where
    ES: UnwindSafe,
    T: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.