Given this code:
s_Batch = new BatchBlock<PerformanceRecord>(500);
s_Action = new ActionBlock<PerformanceRecord[]>(a => SendToDatabase(a));
s_Batch.LinkTo(s_Action);
When I'm done do I need to call Complete()
on each block? Or will completing s_Batch
trigger a complete in the blocks linked to it?