#include <SimpleConverterBox.h>
Inherits ConverterBox.
Inherited by RegexConverterBox.
Protected Member Functions | |
SimpleConverterBox (TupleDescription schema, char delim) | |
Create a converter box where each input record is terminated with a specific character. | |
SimpleConverterBox (TupleDescription schema, unsigned int length) | |
Create a converter box where each input is of a fixed size. | |
~SimpleConverterBox () | |
Destructor. | |
virtual unsigned int | handleData (constbuf input) throw (AuroraException) |
Handles data by converting input records and enqueueing resultant data. | |
virtual bool | convertTuple (const char *data, unsigned int length, char *out)=0 throw (AuroraException) |
Convert an input record. |
|
Create a converter box where each input record is terminated with a specific character.
|
|
Create a converter box where each input is of a fixed size.
|
|
Destructor.
|
|
Convert an input record. Must be implemented in the subclass.
Implemented in RegexConverterBox.
|
|
Handles data by converting input records and enqueueing resultant data. Should not be overridden by subclasses (if you would need to override this, subclass ConverterBox directly). Implements ConverterBox.
|