public void process() { DateTime date = new DateTime(2013, 4, 2); while (countDown >= 0 && streamInformation.active) { String columnA = countDown.ToString(); String columnB = date.ToString(DateUtil.FORMAT_MDYYYY); List <String> row = new List <String> { columnA, columnB }; next.processRow(row); countDown--; date = date.AddDays(-7); } next.endOfFile(); // flushes buffering and output }
public void endOfFile() { processor.endOfFile(); }
public void endOfFile() { forward(buffering.endOfFile()); processor.endOfFile(); }