为您找到相关结果13,648个
从源码角度分析Android的消息机制_Android_脚本之家
那么Handler如何拿到Message呢?这时候就需要Looper了,Looper通过Looper.loop()来开启一个死循环,不断从MessageQueue中取消息然后传递给Handler。这里还有另一个知识点就是Looper的获取,这里就要提高一个存储类:ThreadLocalThreadLocal的工作原理 ThreadLocal是线程内部的一个数据存储类,可以存储某个线程中的数据,对于其他...
www.jb51.net/article/2084...htm 2025-4-6
Vue2中easyplayer的使用教程详解_vue.js_脚本之家
this.$emit('pullFlow') this.timer = setInterval(() => { this.$refs.EasyPlayerRef.initPlayer() //初始化播放器 this.$emit('pullFlow') }, 3000) }, // 播放事件 videoPlay(a) { // console.log(a,'视频播放--->>') if(this.timer) { clearInterval(this.timer) this.timer = null }...
www.jb51.net/javascript/294981w...htm 2025-4-18
仿钉钉流程轻松实现JSON转BPMN完整实现过程示例_java_脚本之家
process.addFlowElement(endEvent); // 三.递归绘制节点 drawNode(process, node, "_start", "_end", null); // 四.自动布局 new BpmnAutoLayout(bpmnModel).execute(); // 五.转xml BpmnXMLConverter bpmnXMLConverter=new BpmnXMLConverter(); byte[] convertToXML = bpmnXMLConverter.convertToXML(bpmn...
www.jb51.net/program/295569x...htm 2025-4-18
DolphinScheduler容错Master源码分析_java_脚本之家
buildFlowDag(); workflowRunnableStatus = WorkflowRunnableStatus.INITIALIZE_DAG; logger.info("workflowStatue changed to :{}", workflowRunnableStatus); } if (workflowRunnableStatus == WorkflowRunnableStatus.INITIALIZE_DAG) { initTaskQueue(); workflowRunnableStatus = WorkflowRunnableStatus.INITIALIZE_QUEUE;...
www.jb51.net/article/2741...htm 2025-4-17
使用路由器作流量检测的几种方法_网络通讯_软件教程_脚本之家
router (config-if)#ip route-cache flow router (config)#ip flow-export destination 172.17.246.225 9996 router (config)#ip flow-export version 5 Optional configuration router (config)#ip flow-export source loopback 0 router (config)#ip flow-cache entries <1024-524288> ...
www.jb51.net/softjc/302...html 2025-3-21
ASP的一些自定义函数整理_应用技巧_脚本之家
Loop while i<=j If Low<j Then call QuickSort(arr,Low,j) If i<High Then call QuickSort(arr,i,High) End sub '=== '函数ID:22 '函数作用:将数组的元素以特定字符串连起来 '作者名称:茫仔 xiamangmang@gmail.com 博客:blog.mzoe.com '建立时间:2006-4-9 21:16 '修改时间: '传人参数: '...
www.jb51.net/article/14861_a...htm 2025-4-19