Converter<S, T> class

A Converter converts data from one representation into another.

A Converter converts data from one representation into another.

It is recommended that implementations of Converter extend this class, to inherit any further methods that may be added to the class.

Implements:
Implementors

Constructors

Converter ( )
const

Instance Methods

convert ( S input ) → T
Converts input and returns the result of the conversion.
fuse ( Converter<T> other ) → Converter<S>
Fuses this with other.
startChunkedConversion ( Sink sink ) → ChunkedConversionSink
Starts a chunked conversion.
bind ( Stream stream ) → Stream
Transform the incoming [stream]'s events.