3 Replies Latest reply on Aug 29, 2006 9:05 AM by kukeltje

    how many events in JBPM?

    zxcwillzxc

      thank you

        • 1. Re: how many events in JBPM?
          kukeltje

          unlimited

          • 2. Re: how many events in JBPM?
            fjfd

            do you mean how many kinds of events?

            public static final String EVENTTYPE_TRANSITION = "transition";
            public static final String EVENTTYPE_BEFORE_SIGNAL = "before-signal";
            public static final String EVENTTYPE_AFTER_SIGNAL = "after-signal";
            public static final String EVENTTYPE_PROCESS_START = "process-start";
            public static final String EVENTTYPE_PROCESS_END = "process-end";
            public static final String EVENTTYPE_NODE_ENTER = "node-enter";
            public static final String EVENTTYPE_NODE_LEAVE = "node-leave";
            public static final String EVENTTYPE_SUPERSTATE_ENTER = "superstate-enter";
            public static final String EVENTTYPE_SUPERSTATE_LEAVE = "superstate-leave";
            public static final String EVENTTYPE_SUBPROCESS_CREATED = "subprocess-created";
            public static final String EVENTTYPE_SUBPROCESS_END = "subprocess-end";
            public static final String EVENTTYPE_TASK_CREATE = "task-create";
            public static final String EVENTTYPE_TASK_ASSIGN = "task-assign";
            public static final String EVENTTYPE_TASK_START = "task-start";
            public static final String EVENTTYPE_TASK_END = "task-end";
            public static final String EVENTTYPE_TIMER = "timer";

            • 3. Re: how many events in JBPM?
              kukeltje

              but these are extendible with your own events. These are not checked in the engine. If you create an action on event 'bla' and send an event 'bla' with the api to the engine (the correct token) the action will be executed.

              The events described aboce are the events generated by the engine