getCurrentOutput method

String getCurrentOutput()

Get the current cached output

Implementation

String getCurrentOutput() {
  String tmp = resultQueue.join('\n');
  resultQueue = [];
  return tmp;
}