pub struct Builder { /* private fields */ }
Expand description
A builder for VirtualNodeTcpConnectionPool
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn max_connections(self, input: i32) -> Self
pub fn max_connections(self, input: i32) -> Self
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
sourcepub fn set_max_connections(self, input: Option<i32>) -> Self
pub fn set_max_connections(self, input: Option<i32>) -> Self
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
sourcepub fn build(self) -> VirtualNodeTcpConnectionPool
pub fn build(self) -> VirtualNodeTcpConnectionPool
Consumes the builder and constructs a VirtualNodeTcpConnectionPool
.