Its known that we can start SharePoint 2007 workflows programmatically. Here is the code that loops through all items in a list and starts the workflow for each item:
foreach(SPListItem item in list.Items) { SPListItem wrkItem =list.GetItemById(item.ID); wrkflowmgr.StartWorkflow(wrkItem,wflassociation, wflassociation.AssociationData); }
However the SharePoint Paradox here is that you can start only one workflow at a time , and have to wait for it to take its sweet time to finish, before you start the workflow for next item in list. So what do you do if you have ( like i had ) a requirement to start a workflow on multiple items in a list simultaneously ? Obviously you post a question shouting for help in stackoverflow. I was told:
there is no simultaneous method to start workflows for multiple list items at the same time.
But i eventually figured out, that Multi Threading is the solution.
Steps
- Create a Class “startWorkflow” that starts the workflow for a list item
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.SharePoint; using Microsoft.SharePoint.Administration; using Microsoft.SharePoint.Workflow; using Microsoft.SharePoint.Utilities; using System.Threading; namespace SimultaneousWorkflows { class startWorkflow { int itemID; string siteURl; Guid gid; // GUID of the Workflow public startWorkflow(int iID, string sURl, Guid guidWfl) { itemID = iID; siteURl = sURl; gid = guidWfl; } public void startworkflowThread() { SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new SPSite(siteURl)) { SPWeb web = site.RootWeb; web.AllowUnsafeUpdates = true; SPList list = web.Lists["Your List Name"]; SPWorkflowManager wrkflowmgr = site.WorkflowManager; SPWorkflowAssociation wflassociation = list.WorkflowAssociations[gid]; SPListItem wrkItem = list.GetItemById(itemID); wrkflowmgr.StartWorkflow(wrkItem, wflassociation, wflassociation.AssociationData); } }); } } }
- Implement Multithreading in the Timer Job Definition class file
I am just adding the relevant code here . Note: i was creating a timer job that would start the workflow , hence i updated the Timer Job Definition file , you can however do the following changes to the relevant class in your project.
Include the System.Collections.Generic and System.Threading namespaces.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.SharePoint; using Microsoft.SharePoint.Administration; using Microsoft.SharePoint.Workflow; using Microsoft.SharePoint.Utilities; using System.Threading; using System.Diagnostics;
Create a variable holding the GUID value of Workflow you want to start.
public Guid wfguid = "The GUID value of Workflow you want to start" ;
Instantiate a Generic List ( Collection) of thread objects.
List<Thread> resThreadCollection = new List<Thread>();
Instantiate a Generic List ( Collection) of “startWorkflow” objects from the class you created above.
List<startWorkflow> startWorkFlowCollection = new List<startWorkflow>();
Update the Loop code as follows :
foreach(SPListItem item in list.Items) { startWorkflow thisItem = new startWorkflow(item.ID, siteUrl, wfguid); startWorkFlowCollection.Add(thisItem); } // Create a thread for each item added into startWorkFlowCollection if (startWorkFlowCollection.Count > 0) { foreach (startWorkflow itm in startWorkFlowCollection) { Thread MyThread = new Thread(new ThreadStart(itm.startworkflowThread)); resThreadCollection.Add(MyThread); } } // Start the Threads if (resThreadCollection.Count > 0) { foreach (Thread tobeStarted in resThreadCollection) { tobeStarted.Start(); } }
This is it , the workflows would start simultaneously now.
Comments