SparkseeNet 6.1.0
com.sparsity.sparksee.io.RowWriter Class Reference

RowWriter interface. More...

Inheritance diagram for com.sparsity.sparksee.io.RowWriter:
Inheritance graph

Public Member Functions

void Close () throws System.ApplicationException, System.IO.IOException
 Closes the writer.
 
void Write (com.sparsity.sparksee.gdb.StringList row) throws System.ApplicationException, System.IO.IOException
 Writes the next row.
 

Detailed Description

RowWriter interface.

Common interface for those writers which dump the data from an string array.

It works as follows: perform as many write operations as necessary and call close once at the end. Once close is called no more write operations can be executed.

Check out the 'Data export' section in the SPARKSEE User Manual for more details on this.

Author
Sparsity Technologies http://www.sparsity-technologies.com

Member Function Documentation

◆ Close()

void com.sparsity.sparksee.io.RowWriter.Close ( ) throws System.ApplicationException, System.IO.IOException

Closes the writer.

Exceptions
System.ApplicationExceptionnull
System.IO.IOExceptionIf the close fails.

◆ Write()

void com.sparsity.sparksee.io.RowWriter.Write ( com.sparsity.sparksee.gdb.StringList row) throws System.ApplicationException, System.IO.IOException

Writes the next row.

Parameters
row[in] Row of data.
Exceptions
System.ApplicationExceptionnull
System.IO.IOExceptionIf bad things happen during the write.