microsoft / durabletask-java

Java SDK for Durable Functions and the Durable Task Framework
MIT License
13 stars 7 forks source link

Query instance history support #11

Open cgillum opened 2 years ago

cgillum commented 2 years ago

Requirement

Orchestration clients should be able to query for an orchestration instance and also get back the history events for that orchestration, similar to the showHistory flag mentioned here.

Implementation notes

The .NET in-process Durable Functions implementation returned a JSON array. For this work-item, we should instead return something structured - e.g., an array of strongly typed objects.