Ejemplo n.º 1
0
            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
            }
Ejemplo n.º 2
0
 public void endOfFile()
 {
     processor.endOfFile();
 }
Ejemplo n.º 3
0
 public void endOfFile()
 {
     forward(buffering.endOfFile());
     processor.endOfFile();
 }