All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.runtime.process.ProcessInstance Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.runtime.process;

public interface ProcessInstance
    extends
    EventListener {

    int STATE_PENDING   = 0;
    int STATE_ACTIVE    = 1;
    int STATE_COMPLETED = 2;
    int STATE_ABORTED   = 3;
    int STATE_SUSPENDED = 4;

    String getProcessId();

    long getId();

    String getProcessName();

    int getState();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy