Struct Worker

Source
pub struct Worker { /* private fields */ }
Expand description

Distributed task worker

Implementations§

Source§

impl Worker

Source

pub fn new(config: Config) -> Self

Creates a new worker with the given configuration

§Arguments
  • config - Worker configuration
§Example
use go_server_rust_sdk::worker::{Worker, Config};
 
let config = Config {
    scheduler_url: "ws://localhost:8080/api/worker/connect/123456".to_string(),
    worker_group: "math".to_string(),
    max_retry: 5,
    ping_interval: 5,
};
 
let worker = Worker::new(config);
Source

pub fn register_method<F>( &mut self, name: impl Into<String>, handler: F, docs: Vec<String>, )
where F: Fn(Value) -> Result<Value> + Send + Sync + 'static,

Registers a method handler with the worker

§Arguments
  • name - Method name
  • handler - Function that handles the method call
  • docs - Documentation strings for the method
§Example
use go_server_rust_sdk::worker::{Worker, Config};
use serde_json::{json, Value};
 
let mut worker = Worker::new(config);
 
worker.register_method("add", |params: Value| {
    let a = params["a"].as_f64().unwrap_or(0.0);
    let b = params["b"].as_f64().unwrap_or(0.0);
    Ok(json!(a + b))
}, vec!["Add two numbers".to_string()]);
Source

pub async fn start(&mut self) -> Result<()>

Starts the worker with automatic reconnection support

This method will block until the worker is stopped.

§Returns

A Result indicating success or failure

§Example
use go_server_rust_sdk::worker::{Worker, Config};
 
let mut worker = Worker::new(config);
// Register methods...
worker.start().await?;
Source

pub async fn stop(&mut self)

Stops the worker

This method will signal the worker to stop and close all connections.

§Example
use go_server_rust_sdk::worker::{Worker, Config};
 
let mut worker = Worker::new(config);
 
// In another task or signal handler:
worker.stop().await;

Auto Trait Implementations§

§

impl Freeze for Worker

§

impl !RefUnwindSafe for Worker

§

impl Send for Worker

§

impl Sync for Worker

§

impl Unpin for Worker

§

impl !UnwindSafe for Worker

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,