/Rhino.Etl.Tests/LoadTest/AccumulateResults.cs
http://github.com/ayende/rhino-etl · C# · 20 lines · 18 code · 2 blank · 0 comment · 0 complexity · 39ff235ab442fd23222748423c4f21be MD5 · raw file
- namespace Rhino.Etl.Tests.LoadTest
- {
- using System.Collections.Generic;
- using Core;
- using Core.Operations;
- public class AccumulateResults : AbstractOperation
- {
- public int count = 0;
- public override IEnumerable<Row> Execute(IEnumerable<Row> rows)
- {
- foreach (Row row in rows)
- {
- count += 1;
- }
- yield break;
- }
- }
- }