[][src]Struct eventstore::ConnectionBuilder

pub struct ConnectionBuilder {
    pub settings: Settings,
}

Helps constructing a connection to the server.

Fields

settings: Settings

Methods

impl ConnectionBuilder[src]

pub fn heartbeat_delay(self, delay: Duration) -> Self[src]

Maximum delay of inactivity before the client sends a heartbeat request.

pub fn heartbeat_timeout(self, timeout: Duration) -> Self[src]

Maximum delay the server has to issue a heartbeat response.

pub fn operation_timeout(self, timeout: Duration) -> Self[src]

Delay in which an operation will be retried if no response arrived.

pub fn operation_retry(self, strategy: Retry) -> Self[src]

Retry strategy when an operation has timeout.

pub fn connection_retry(self, strategy: Retry) -> Self[src]

Retry strategy when failing to connect.

pub fn with_default_user(self, user: Credentials) -> Self[src]

'Credentials' to use if other Credentials are not explicitly supplied when issuing commands.

pub fn with_connection_name<S>(self, name: S) -> Self where
    S: Into<Chars>, 
[src]

Default connection name.

pub fn operation_check_period(self, period: Duration) -> Self[src]

The period used to check pending command. Those checks include if the the connection has timeout or if the command was issued with a different connection.

pub fn single_node_connection(self, addr: SocketAddr) -> Connection[src]

Creates a connection to a single EventStore node. The connection will start right away.

pub fn single_node_connection_with_runtime(
    self,
    addr: SocketAddr,
    runtime: &mut Runtime
) -> Connection
[src]

Creates a connection to a single EventStore node. The connection will start right away.

pub fn cluster_nodes_through_gossip_connection(
    self,
    setts: GossipSeedClusterSettings
) -> Connection
[src]

Creates a connection to a cluster of EventStore nodes. The connection will start right away. Those GossipSeed should be the external HTTP endpoint of a node. The standard external HTTP endpoint is running on 2113.

pub fn cluster_nodes_through_gossip_connection_with_runtime(
    self,
    setts: GossipSeedClusterSettings,
    runtime: &mut Runtime
) -> Connection
[src]

Creates a connection to a cluster of EventStore nodes. The connection will start right away. Those GossipSeed should be the external HTTP endpoint of a node. The standard external HTTP endpoint is running on 2113.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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.

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.

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

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

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

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

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

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