Sparksee
6.0.2
|
RowWriter interface. More...
Instance Methods | |
(void) | - write: |
Writes the next row. More... | |
(void) | - close |
Closes the writer. More... | |
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.
- (void) close |
Closes the writer.
System.ApplicationException | null |
System.IO.IOException | If the close fails. |
Implemented in STSCSVWriter.
- (void) write: | (STSStringList *) | row |
Writes the next row.
row | [in] Row of data. |
System.ApplicationException | null |
System.IO.IOException | If bad things happen during the write. |
Implemented in STSCSVWriter.