Does the camunda engine provides an API to query all running instances of a certain process? Does this query includes suspended instances too?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You can query all running process instance of a process using the following code:
If you want to include even suspended process instance, then just delete the .active() line.