[][src]Struct exonum::node::Node

pub struct Node { /* fields omitted */ }

Node that contains handler (NodeHandler) and NodeApiConfig.

Methods

impl Node
[src]

pub fn new<D: Into<Arc<dyn Database>>>(
    db: D,
    services: Vec<Box<dyn Service>>,
    node_cfg: NodeConfig,
    config_file_path: Option<String>
) -> Self
[src]

Creates node for the given services and node configuration.

pub fn run_handler(self, handshake_params: &HandshakeParams) -> Result<()>
[src]

Launches only consensus messages handler. This may be used if you want to customize api with the ApiContext.

pub fn run(self) -> Result<(), Error>
[src]

A generic implementation that launches Node and optionally creates threads for public and private api handlers. Explorer api prefix is /api/explorer Public api prefix is /api/services/{service_name} Private api prefix is /api/services/{service_name}

pub fn blockchain(&self) -> Blockchain
[src]

Returns Blockchain instance.

pub fn state(&self) -> &State
[src]

Returns State.

pub fn handler(&self) -> &NodeHandler
[src]

Returns NodeHandler.

pub fn channel(&self) -> ApiSender
[src]

Returns channel.

Trait Implementations

impl Debug for Node
[src]

Auto Trait Implementations

impl Send for Node

impl !Sync for Node

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self