Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titlePreviewContext
interface PreviewContext {
   
	 // all records from the stage identified by identifier    
	<T> Iterator<T> getOutputRecords(StringPreviewId identifier);
   
	 // all metrics from the stage identified by identifier
	Collection<MetricTimeSeries> getMetrics(StringPreviewId identifier);
  
 	 // all logs from the stage identified by identifier
	String getLogs(StringPreviewId identifier);
}
Code Block
titlePreviewEmitter
interface PreviewEmitter {	
	void emit(T record);
}

...