minor release

This commit is contained in:
Jonathan Shook
2020-06-17 15:32:18 -05:00
parent 6fb23b7bab
commit 63500882d0
3 changed files with 89 additions and 10 deletions

View File

@@ -180,4 +180,17 @@ advanced scenarios:
- some ops may be required to produce a value
- some ops may be required to produce multiple values
* The carrier of op state should enable the following programmatic constructions:
* Metric measuring the service time of the op on failure
* Metric measuring the service time of the op on success
* Metric measuring the size of the op on success
* Hooks for transforming or acting upon the op or cycle before the op executes
* Hooks for transforming or acting upon the op or cycle after the op executes, regardless of result
* Additional modifiers on the op, as in transformers.
* All op contextual actions should be presented as a function on the op type
* Completion Stages that support the op API should come from built-in template implementations that already include
metrics options, logging support, etc.