ResultSet to Byte Stream Demux Transform Pipeline Item

A ResultSet to byte stream demux transform pipeline item is a demupltiplexer that takes a result set as input and generates a sequence of byte streams as output. A new byte stream will be generated for each row in the result set. 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.