org.apache.jute
Class RecordWriter
java.lang.Object
org.apache.jute.RecordWriter
public class RecordWriter
- extends Object
Front-end for serializers. Also serves as a factory for serializers.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RecordWriter
public RecordWriter(OutputStream out,
String format)
throws IOException
- Creates a new instance of RecordWriter
- Parameters:
out
- Output stream where the records will be serializedformat
- Serialization format ("binary", "xml", or "csv")
- Throws:
IOException
write
public void write(Record r)
throws IOException
- Serialize a record
- Parameters:
r
- record to be serialized
- Throws:
IOException