异步执行
程序员文章站
2022-06-28 20:54:47
//BS架构下的异步执行文件 public delegate void NotifyExamDelegate(int SingleCount); AsyncSendEmailToUser(0); void AsyncSendEmailToUser(int SingleCount) { NotifyE ......
//bs架构下的异步执行文件 public delegate void notifyexamdelegate(int singlecount); asyncsendemailtouser(0); void asyncsendemailtouser(int singlecount) { notifyexamdelegate del = new notifyexamdelegate(sendemailtouser); iasyncresult ar = del.begininvoke(singlecount, new asynccallback(callbackmethod), del); } void callbackmethod(iasyncresult ar) { notifyexamdelegate del = (notifyexamdelegate)ar.asyncstate; del.endinvoke(ar); } public void sendemailtouser(int num) { bool flag = bll.insert_hr_exam_user(); }
下一篇: 溜了一圈,这货就耍无赖了!
推荐阅读
-
jquery获取多个checkbox的值异步提交给php的方法_PHP教程
-
Oracle执行分析详细
-
jQuery.ajax什么时候执行error
-
JS中call与apply的作用及区别 jscallapply执行上下文
-
jQuery.ajax什么时候执行error
-
提升PHP执行速度全攻略(下)_php基础
-
php执行mysql语句问题
-
关于cookie在代码中执行的顺序有关问题
-
mysql执行sql语句提示Expression #1 of ORDER BY clause is not in GROUP BY
-
【mysql】执行group by提示only_full_group_by问题解决方法