Interface MockDSExportCallback


public interface MockDSExportCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(String allDSData, String[] perDSData)
    Callback fired upon successful completion of Reify.getMockDS() or Reify.showMockDS(): Output for all DataSources together is reported as the single string parameter allDSData.
  • Method Details

    • execute

      void execute(String allDSData, String[] perDSData)
      Callback fired upon successful completion of Reify.getMockDS() or Reify.showMockDS():
      • Output for all DataSources together is reported as the single string parameter allDSData. When using format: "reifyCSV", output for separate DataSources is separated by a special marker.
      • Output with each DataSource as a separate string array element is also available as the parameter perDSData, ordered to match the dsNames parameter in Reify.getMockDS() or Reify.showMockDS().

      Note that in the case of Reify.showMockDS(), the callback is fired after the window is closed, not when it's populated.

      Parameters:
      allDSData - concatenated output for all DataSources
      perDSData - same output but delivered as a per-DS array