Example usage for org.apache.hadoop.record Record serialize

List of usage examples for org.apache.hadoop.record Record serialize

Introduction

In this page you can find the example usage for org.apache.hadoop.record Record serialize.

Prototype

public void serialize(RecordOutput rout) throws IOException 

Source Link

Document

Serialize a record without a tag

Usage

From source file:com.jfolson.hive.serde.RTypedBytesWritableOutput.java

License:Apache License

public void writeRecord(Record r) throws IOException {
    r.serialize(RTypedBytesRecordOutput.get(out));
}