Beispiel #1
0
        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);
        }
Beispiel #2
0
 public static void DoAsync(IList dataCollection, int threadCn, WaitCallback processItemMethod)
 {
     AsyncHelper.DoAsync(dataCollection, threadCn, processItemMethod, true);
 }
Beispiel #3
0
 public static void DoAsync(IList dataCollection, int threadCn, DoGetObjTask processItemMethod, out Hashtable processResult)
 {
     AsyncHelper.DoAsyncPrivate(dataCollection, threadCn, (WaitCallback)null, processItemMethod, true, true, out processResult);
 }
Beispiel #4
0
        public static void DoAsync(IList dataCollection, int threadCn, WaitCallback processItemMethod, bool needWaitAll)
        {
            Hashtable hashtable;

            AsyncHelper.DoAsyncPrivate(dataCollection, threadCn, processItemMethod, null, needWaitAll, false, out hashtable);
        }