<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Oracle神諭

      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
      284 隨筆 :: 9 文章 :: 106 評論 :: 0 Trackbacks

    Nodetype task-node 節點類型 任務節點
    A task node represents one or more tasks that are to be performed by humans. So when execution arrives in a task node, task instances will be created in the task lists of the workflow participants. After that, the node will behave as a wait state. So when the users perform their task, the task completion will trigger the resuming of the execution. In other words, that leads to a new signal being called on the token.
      一個任務節點表現為被人所運行的一個或多個任務。所以當執行到達一個任務節點,任務實例將被創建在工作流創建者業務列表中。畢竟,這個節點將作為一個等待狀態。所以當用戶運行他們的任務,這個任務完成將觸發執行的恢復。換言之,那導致一個新的標記在那個toke上被呼叫。

    7.3.3. Nodetype state  節點類型 狀態
    A state is a bare-bones wait state. The difference with a task node is that no task instances will be created in any task list. This can be usefull if the process should wait for an external system. E.g. upon entry of the node (via an action on the node-enter event), a message could be sent to the external system. After that, the process will go into a wait state. When the external system send a response message, this can lead to a token.signal(), which triggers resuming of the process execution.
      一個狀態是裸骨等待狀態。這個不同一個任務節點的是沒有任務實例將被創建在任務任務列表中。這可以是有用的,如果流程應當為外部系統等待。例如,在節點實體之上(依靠在節點進入事件的一個動作),一個消息將被發送到外部系統。畢竟,這個流程將進入等待狀態。當外部系統發送一個返回信息,這可以導致token.signal(),這將觸發一個流程執行的恢復。

    7.3.4. Nodetype decision 節點類型 決定
    Actually there are 2 ways to model a decision. The distinction between the two is based on *who* is making the decision. Should the decision made by the process (read: specified in the process definition). Or should an external entity provide the result of the decision.
      實際上這里有兩種方法來創建一個決定。兩者的區別是基誰在做這個決定。 應該被流程來決定。(限定在流程定義中)或者應該一個外部實體支持決定的結果。

    When the decision is to be taken by the process, a decision node should be used. There are basically 2 ways to specify the decision criteria. Simplest is by adding condition elements on the transitions. Conditions are beanshell script expressions that return a boolean. At runtime the decision node will loop over its leaving transitions (in the order as specified in the xml), and evaluate each condition. The first transition for which the conditions resolves to 'true' will be taken. Alternatively, an implementation of the DecisionHandler can be specified. Then the decision is calculated in a java class and the selected leaving transition is returned by the decide-method of the DecisionHandler implementation.
      當這個決定被流程執行,一個決定節點應該被使用。這里有兩個基本方法來限定決定標準。最簡單是在躍遷上增加條件因素。條件是Beanshell腳本表達式返回一個boolean值。在運行時這個決定節點將循環離開躍遷(順序和xml定義的一樣)。一個DecisionHandler的實現被定義是可選擇的。那么,決定被計算在java類中并且選擇離開躍遷被DecisionHandler實現的決定方法返回。

    When the decision is taken by an external party (meaning: not part of the process definition), you should use multiple transitions leaving a state or wait state node. Then the leaving transition can be provided in the external trigger that resumes execution after the wait state is finished. E.g. Token.signal(String transitionName) and TaskInstance.end(String transitionName).
      當這個決定被外部執行(意味著:不是流程定義部分),你應該使用多躍遷離開一個狀態或等待節點。那么這個離開躍遷在外部的除法器可以被支持恢復執行,在等待狀態完成后。例如,Token.signal(String transitionName) 和TaskInstance.end(String transitionName).
    7.3.5. Nodetype fork 節點類型 叉
    A fork splits one path of execution into multiple concurrent paths of execution. The default fork behaviour is to create a child token for each transition that leaves the fork, creating a parent-child relation between the token that arrives in the fork.
    一個叉分離一個路徑執行到多個并行的執行路徑。這個缺省的叉行為是為每個離開叉躍遷創建一個子token,創建一個到達叉中父-子關系。

    7.3.6. Nodetype join 節點類型 合并
    The default join assumes that all tokens that arrive in the join are children of the same parent. This situation is created when using the fork as mentioned above and when all tokens created by a fork arrive in the same join. A join will end every token that enters the join. Then the join will examine the parent-child relation of the token that enters the join. When all sibling tokens have arrived in the join, the parent token will be propagated over the (unique!) leaving transition. When there are still sibling tokens active, the join will behave as a wait state.
    缺省的合并假設所有的token到達合并點,這些都都是相同父的子。這個情形被創建如我們以上提到的使用叉并且當所有被fork創建的所有token到達相同的join. 一個join將結束每個進入join的token. 那么這個join將檢查進入join的token父-子關系。當所有的兄弟姐們tokens激活,這個離開的躍遷join將傳播。當這里還有兄弟tokens激活,這個join將作為一個等待狀態。

    7.3.7. Nodetype node 節點類型 節點
    The type node serves the situation where you want to write your own code in a node. The nodetype node expects one subelement action. The action is executed when the execution arrives in the node. The code you write in the actionhandler can do anything you want but it is also responsible for propagating the execution.
    節點類型服務在你想寫你自己的代碼在節點中。這個節點類型節點期待一個子元素行為。這個行為被執行當所有執行到達這個節點。在actionHandler中你寫的代碼可以做你想做的任何事情,當時它是也是一個責任為執行傳播。

    This node can be used if you want to use a JavaAPI to implement some functional logic that is important for the business analyst. By using a node, the node is visible in the graphical representation of the process. For comparison, actions --covered next-- will allow you to add code that is invisible in the graphical representation of the process, in case that logic is not important for the business analyst.
    這個節點可以被使用,如果你將使用JavaAPI來實現一些功能邏輯,對邏輯分析是重要的. 作為使用一個node,node 是可以視的在流程圖形表現中。為對比,actions-convered next--將允許在流程圖形表現中增加不可見的代碼,萬一對你邏輯分析是不重要的


     

    posted on 2005-09-20 10:25 java世界暢談 閱讀(1621) 評論(3)  編輯  收藏 所屬分類: JBPM

    評論

    # re: Nodetype節點類型 2005-12-06 17:10 p
    翻譯的不錯!up!  回復  更多評論
      

    # re: Nodetype節點類型 2006-01-15 11:43 felice
    呵呵,最近剛開始學JBMP,在做筆記的時候也試著翻譯這部分,希望向你學習,QQ: 397018827。  回復  更多評論
      

    # re: Nodetype節點類型 2006-03-28 08:16 young
    好~~~收下了  回復  更多評論
      

    主站蜘蛛池模板: 4虎永免费最新永久免费地址| 亚洲人成人77777网站不卡| 中文字幕亚洲综合久久综合| 黄页免费的网站勿入免费直接进入| 中文字幕亚洲综合久久2| 1000部羞羞禁止免费观看视频| 亚洲视频在线免费看| 污污网站免费观看| 久久精品国产亚洲AV嫖农村妇女| 99视频精品全部免费观看| 久久精品国产亚洲AV麻豆网站| 久久国产免费福利永久| 2017亚洲男人天堂一| 在线观看人成视频免费| 狼色精品人妻在线视频免费| 夜夜春亚洲嫩草影院| 性xxxx视频免费播放直播| 亚洲人成网站看在线播放| 免费国产黄线在线观看 | 亚洲AV无码一区二区三区系列| 日韩精品无码免费专区午夜 | 美女啪啪网站又黄又免费| 亚洲毛片av日韩av无码| 国内永久免费crm系统z在线| 91亚洲自偷在线观看国产馆| 国产精品久久免费视频| 久久国产一片免费观看| 亚洲成人在线免费观看| 深夜国产福利99亚洲视频| 日韩免费观看一区| 亚洲码和欧洲码一码二码三码| 亚洲阿v天堂在线2017免费| 久久国产精品免费视频| 中文字幕在线观看亚洲日韩| 国外亚洲成AV人片在线观看 | 亚洲av日韩aⅴ无码色老头| 中文国产成人精品久久亚洲精品AⅤ无码精品| 暖暖在线视频免费视频| 国产亚洲人成在线播放| 久久精品国产亚洲AV麻豆不卡 | 亚洲无码在线播放|