Example usage for org.apache.thrift.transport TNonblockingTransport read

List of usage examples for org.apache.thrift.transport TNonblockingTransport read

Introduction

In this page you can find the example usage for org.apache.thrift.transport TNonblockingTransport read.

Prototype

public abstract int read(ByteBuffer buffer) throws IOException;

Source Link

Usage

From source file:com.thinkaurelius.thrift.util.mem.Buffer.java

License:Apache License

public int readFrom(TNonblockingTransport transport) throws IOException {
    return transport.read(buffer);
}