Yurii Rashkovskii

Results 150 issues of Yurii Rashkovskii

- [ ] Loop Activity instance attributes (Table 10.27) - [ ] Multi-instance Activity instance attributes (Table 10.30) - [ ] Boundary events - [ ] Better error handling /...

tracking

Proposed solution: implement Service Task

It's currently impossible to save the state of the workflow in order to either resume it or restart in case of failure. Proposed solution: finally utilize state retrieval and state...

enhancement

Currently, BPXE is only able to run workflows uninterruptedly. However, in certain scenarios it is highly beneficial to be able to stop and observe the state of the execution and...

enhancement

While this is ok for now, when BPXE is in its early stages, it won't be great for production use-cases. Proposed solution: allow configuring scripts for forced termination For Rhai,...

This is because there's no default timeout when they are trying to receive something (log, event, custom channel source). It's not a problem for CI -- tests seem to be...

good first issue

Implementation referred to: https://github.com/bpxe/bpxe/blob/master/bpxe-bpmn-schema/src/expr.rs It's somewhat complex and it has to deal with deserializing content of its two variants. Proposed solution: find a way for strong-xml to handle mixed content...

Even though BPXE can currently serialize to JSON/YAML and a few other formats, it can't serialize BPMN documents back to XML.

BPMN relies on `xsi:type` attribute (#2) and we don't normalize attributes in `bpm::parser::normalize`. Basically, we don't check if there's a namespace called something other than `xsi` pointing to http://www.w3.org/2001/XMLSchema-instance", something...

good first issue

When attempting to serialize `Definitions` to TOML, it fails with `TableAfterValue`: ``` thread 'serialize_deserialize_serde_toml' panicked at 'called `Result::unwrap()` on an `Err` value: ValueAfterTable', tests/bpmn_test.rs:41:46 ``` However, JSON, RON, MessagePack and...

bug