Looking at row 47 in BranchingOperation.cs it occurs to me that this won't support streaming. Here's the row:
List<Row> copiedRows = new List<Row>(rows); When the file is so huge as to not fit into memory I want my Operations to process records in pure IEnumerable fashion, pulling and pushing one record at a time but never trying to accumulate all records in memory. What other operations do not support streaming and do we want to fix this? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rhino-tools-dev?hl=en -~----------~----~----~----~------~----~------~--~---
