ResultSet to Byte Stream Transform Pipeline Item

A ResultSet to byte stream transform pipeline item takes a result set as input and generates a byte stream as output. In order to facilitate a custom transform of the result set, the user has to specify in a JSR-223 compliant script, the implementation of the following function:

public abstract void transformRow(ResultSet resultSet, OutputStream outputStream);

This will be called once for each row in the result set.