Skip to main content

NodeOptions

Struct NodeOptions 

Source
pub struct NodeOptions {
    pub host: String,
    pub transport: String,
    pub ws_url: Option<String>,
    pub console_url: Option<String>,
    pub message_xsub: Option<String>,
    pub message_xpub: Option<String>,
    pub service_frontend: Option<String>,
    pub service_backend: Option<String>,
    pub action_backend: Option<String>,
    pub action_frontend: Option<String>,
}
Expand description

Broker connection settings owned by a [Node].

Defaults: host = "localhost", transport = "tcp". Prefer the presets NodeOptions::tcp / NodeOptions::ipc / NodeOptions::inproc (or [Node::tcp] / [Node::ipc] / [Node::inproc]) instead of filling every endpoint by hand. Explicit endpoint fields still override derived transports::* addresses when set.

For WebSocket clients, use NodeOptions::ws / [Node::ws] (transport = "ws", ws_url points at the broker WebSocket listen address).

Fields§

§host: String§transport: String§ws_url: Option<String>

WebSocket RPC server base URL when transport == "ws" (e.g. http://127.0.0.1:15560).

§console_url: Option<String>

Embedded console HTTP base URL (same origin as the API listen when co-located). Filled by discovery when the broker announces it. Used by rbus / introspection clients; topology registration goes over the message bus.

§message_xsub: Option<String>§message_xpub: Option<String>§service_frontend: Option<String>§service_backend: Option<String>§action_backend: Option<String>§action_frontend: Option<String>

Implementations§

Source§

impl NodeOptions

Source

pub fn discover(self, opts: DiscoverOpts) -> Result<Self>

Wait for a broker discover response, then apply it onto this options value.

Source§

impl NodeOptions

Source

pub fn tcp() -> Self

TCP to the local broker (localhost + default ports).

Source

pub fn tcp_at(host: impl Into<String>) -> Self

TCP to a broker at host (default ports).

Source

pub fn ipc() -> Self

IPC under the default directory (/tmp/robot_bus). Prefer discover when the broker uses a broker-id namespaced ipc dir.

Source

pub fn ipc_at(dir: impl AsRef<str>) -> Self

IPC under a custom directory (must match the broker’s ipc binds).

Source

pub fn inproc() -> Self

Same-process inproc://robot_bus/... (default broker prefix).

Source

pub fn inproc_at(prefix: impl AsRef<str>) -> Self

Same-process endpoints under a custom prefix (must match the broker).

prefix may be my_app or inproc://my_app.

Source

pub fn ws() -> Self

WebSocket RPC server (native + browser /ws-rpc) on the local broker (http://127.0.0.1:15560).

Source

pub fn ws_at(url: impl Into<String>) -> Self

WebSocket RPC server at url (e.g. http://127.0.0.1:15560); browsers use ws(s)://…/ws-rpc.

Source

pub fn is_ws(&self) -> bool

Source

pub fn resolved_ws_url(&self) -> Result<String>

Source

pub fn message_xsub_endpoint(&self) -> Result<String>

Source

pub fn message_xpub_endpoint(&self) -> Result<String>

Source

pub fn service_frontend_endpoint(&self) -> Result<String>

Source

pub fn service_backend_endpoint(&self) -> Result<String>

Source

pub fn action_backend_endpoint(&self) -> Result<String>

Source

pub fn action_frontend_endpoint(&self) -> Result<String>

Source

pub fn needs_endpoint_discover(&self) -> bool

True when ZMQ endpoint fields still need to be filled (e.g. via HTTP discover).

Trait Implementations§

Source§

impl Clone for NodeOptions

Source§

fn clone(&self) -> NodeOptions

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NodeOptions

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for NodeOptions

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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