You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.