Struct thrift::transport::TBufferedReadTransport [] [src]

pub struct TBufferedReadTransport<C> where
    C: Read
{ /* fields omitted */ }

Transport that reads messages via an internal buffer.

A TBufferedReadTransport maintains a fixed-size internal read buffer. On a call to TBufferedReadTransport::read(...) one full message - both fixed-length header and bytes - is read from the wrapped channel and buffered. Subsequent read calls are serviced from the internal buffer until it is exhausted, at which point the next full message is read from the wrapped channel.

Examples

Create and use a TBufferedReadTransport.

use std::io::Read;
use thrift::transport::{TBufferedReadTransport, TTcpChannel};

let mut c = TTcpChannel::new();
c.open("localhost:9090").unwrap();

let mut t = TBufferedReadTransport::new(c);

t.read(&mut vec![0u8; 1]).unwrap();

Methods

impl<C> TBufferedReadTransport<C> where
    C: Read
[src]

Create a TBufferedTransport with default-sized internal read and write buffers that wraps the given TIoChannel.

Create a TBufferedTransport with an internal read buffer of size read_capacity and an internal write buffer of size write_capacity that wraps the given TIoChannel.

Trait Implementations

impl<C: Debug> Debug for TBufferedReadTransport<C> where
    C: Read
[src]

Formats the value using the given formatter.

impl<C> Read for TBufferedReadTransport<C> where
    C: Read
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

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

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more