I have 4 tasks, each running the same method but with different parameters. Each task is reading data from a datatable.
EDIT: The data i need the analyse is too large to load it all into memory. Im therefore going to use paging to retrieve smaller block of the data. The process would therefore be as follows:
Create X number of tasks, with a for loop/task.Factory, and manually assign the parameters to each task. (Ive already looked into the parallel for loop.)
Wait until all the tasks have finished running through the 1st page of data.
Load the 2nd page of data into the data table.
The same X tasks would RECOMMENCE running through the new data
Repeat until all the data has been read from the database.
END EDIT
I need a way of waiting for each task to have finished reading all the data in the datatable before i go to sql server and retrieve the next page of data.
At present i was thinking of doing the following: Declare 2 variables inside the object (myEntity) i pass into the method,
1 = number of tasks created (myEntity.TaskCount).
2 = a counter for how many tasks have finished (myEntity.Count).
public List<int> GetData(object myEntity)
{
List<int> myList;
if(rowCounter == myDataTable.Rows.Count)
{
myEntity.Count++;
while(myEntity.Count != myEntity.TaskCount)
{
}
//Refill datatable with new data.
//rowCounter = 0;
}
else
{
myList = new List<int>();
//Assign the values to each tasks myList.
}
return myList;
}
[Question 1] How can i pause the tasks, update the datatable and then allow them to continue?
[Question 2] myList is task specific (ie i would have 4 different myList's since i have 4 tasks) or would its value be shared among all the tasks?