Documentation of 'com.ziclix.python.sql.pipe.Source' Java class
Source
com.ziclix.python.sql.pipe

Interface Source

  • All Known Implementing Classes:
    DBSource


    public interface Source
    A Source produces data to be consumed by a Sink. The data can be generated from anywhere, but must follow the format detail in next().
    See Also:
    next(), Sink
    • Method Detail

      • start

        void start()
        Invoked at the start of processing.
      • next

        PyObject next()
        Return the next row from the source. The following format:
          [(colName, colType), (colName, colType), ...] for headers and:
          [(col), (colName, colType), ...] for all other data must be used.
      • end

        void end()
        Invoked at the end of processing. This method is guarenteed to be called.

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.