51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2543|回复: 0
打印 上一主题 下一主题

[资料] 工作流内部部分代码

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-1-3 21:22:11 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Using the the InMemoryWorklist




Here is a small example on how to use the InMemoryWorklist :
package test;import openwfe.org.engine.workitem.WorkItem;import openwfe.org.engine.workitem.LaunchItem;import openwfe.org.engine.workitem.InFlowWorkItem;import openwfe.org.engine.workitem.AttributeUtils;import openwfe.org.embed.engine.Engine;import openwfe.org.embed.worklist.Worklist;import openwfe.org.embed.impl.engine.InMemoryEngine;import openwfe.org.embed.impl.engine.AbstractEmbeddedParticipant;import openwfe.org.embed.impl.worklist.InMemoryWorklist;public class TestWorklist{    public static void main (String[] args)        throws Exception    {        //        // prepare engine        Engine engine = new InMemoryEngine();        // prepare worklists        InMemoryWorklist wla = new InMemoryWorklist("a");        InMemoryWorklist wlb = new InMemoryWorklist("b");        // register participants        engine.registerParticipant(wla);        engine.registerParticipant(wlb);        //        // launch flow        LaunchItem li = new LaunchItem();        li.setWorkflowDefinitionUrl("field:__definition__");        String flowDef =             "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"+            "<process-definition name=\"test\" revision=\"0.0\">\n"+            "   <sequence>\n"+            "      <participant ref=\"a\" />\n"+            "      <participant ref=\"b\" />\n"+            "   </sequence>\n"+            "</process-definition>";        li.getAttributes().puts("__definition__", flowDef);        engine.launch(li, true);        //        // play with the flow        System.out.println("wla.countWorkItems() : "+wla.countWorkItems());        System.out.println("wlb.countWorkItems() : "+wlb.countWorkItems());        java.util.Iterator it = wla.iterator();        InFlowWorkItem wi = (InFlowWorkItem)it.next();        wla.forward(wi);        System.out.println("\n ~~ forwarded workitem\n");        System.out.println("wla.countWorkItems() : "+wla.countWorkItems());        System.out.println("wlb.countWorkItems() : "+wlb.countWorkItems());    }}As you can see, those embedded worklist are registrable in the engine as embedded participants may be.
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-22 23:11 , Processed in 0.068576 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表