[][src]Struct grpcio::Environment

pub struct Environment { /* fields omitted */ }

An object that used to control concurrency and start gRPC event loop.

Methods

impl Environment[src]

pub fn new(cq_count: usize) -> Environment[src]

Initialize gRPC and create a thread pool to poll completion queue. The thread pool size and the number of completion queue is specified by cq_count. Each thread polls one completion queue.

Panics

This method will panic if cq_count is 0.

pub fn completion_queues(&self) -> &[CompletionQueue][src]

Get all the created completion queues.

pub fn pick_cq(&self) -> CompletionQueue[src]

Pick an arbitrary completion queue.

Trait Implementations

impl Drop for Environment[src]

Auto Trait Implementations

impl Send for Environment

impl Sync for Environment

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
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.