Skip to main content

Executor

Trait Executor 

Source
pub trait Executor:
    Send
    + Sync
    + 'static {
    // Required method
    fn execute_method<'life0, 'life1, 'async_trait>(
        &'life0 self,
        method: &'life1 str,
        payload: Bytes,
    ) -> Pin<Box<dyn Future<Output = Result<Bytes>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;

    // Provided method
    fn execute<'life0, 'async_trait>(
        &'life0 self,
        payload: Bytes,
    ) -> Pin<Box<dyn Future<Output = Result<Bytes>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Sends a serialized payload to a PHP worker and returns the response.

Plugins call this; they never see the worker pool directly.

Required Methods§

Source

fn execute_method<'life0, 'life1, 'async_trait>( &'life0 self, method: &'life1 str, payload: Bytes, ) -> Pin<Box<dyn Future<Output = Result<Bytes>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Send payload to a worker using a specific RPC method name.

Provided Methods§

Source

fn execute<'life0, 'async_trait>( &'life0 self, payload: Bytes, ) -> Pin<Box<dyn Future<Output = Result<Bytes>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Send payload to a worker and return the response bytes. Uses the RPC method name “dispatch” by default.

Implementations on Foreign Types§

Source§

impl<T: Executor + ?Sized> Executor for Arc<T>

Blanket impl: an Arc<dyn Executor> is also an Executor.

Source§

fn execute_method<'life0, 'life1, 'async_trait>( &'life0 self, method: &'life1 str, payload: Bytes, ) -> Pin<Box<dyn Future<Output = Result<Bytes>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§