Skip to content

Version 1.3.0

Choose a tag to compare

@jtnelson jtnelson released this 23 Nov 15:48
· 15 commits to master since this release
  • Added the ScriptedTransformer framework. ScriptedTransformer is abstract class that can be extended to provide transformation logic via a script that is compatible with the Java script engine platform. Right now, javascript is the supported language for writing transformer scripts.
  • Added support for Transformer serialization. The rules of serialization are:
    • All built-in transformers provided in the Transformers factory class are serializable.
    • ScriptedTransformers are serializable.
    • A CompositeTransformer can be serialized if all of the composed transformers can be serailized.
    • Custom transformers that require serialization should be implemented using the ScriptedTransformer framework.
  • Added Transformer#serialize and Transformer#deserialize static methods.