public static void DoAsync(IList dataCollection, int threadCn, WaitCallback processItemMethod, bool needWaitAll) { Hashtable processResult; AsyncHelper.DoAsyncPrivate(dataCollection, threadCn, processItemMethod, (DoGetObjTask)null, needWaitAll, false, out processResult); }
public static void DoAsync(IList dataCollection, int threadCn, WaitCallback processItemMethod) { AsyncHelper.DoAsync(dataCollection, threadCn, processItemMethod, true); }
public static void DoAsync(IList dataCollection, int threadCn, DoGetObjTask processItemMethod, out Hashtable processResult) { AsyncHelper.DoAsyncPrivate(dataCollection, threadCn, (WaitCallback)null, processItemMethod, true, true, out processResult); }
public static void DoAsync(IList dataCollection, int threadCn, WaitCallback processItemMethod, bool needWaitAll) { Hashtable hashtable; AsyncHelper.DoAsyncPrivate(dataCollection, threadCn, processItemMethod, null, needWaitAll, false, out hashtable); }