Trait web3::BatchTransport[][src]

pub trait BatchTransport: Transport {
    type Batch: Future<Item = Vec<Result<Value, Error>>, Error = Error>;
    fn send_batch<T>(&self, requests: T) -> Self::Batch
    where
        T: IntoIterator<Item = (RequestId, Call)>
; }

A transport implementation supporting batch requests.

Associated Types

The type of future this transport returns when a call is made.

Required Methods

Sends a batch of prepared RPC calls.

Implementors