The use case: In a LS::Action, I want to delete some unused values inside context before handing it off to the next action in sequence. context can get very messy
e.g.
If there are 10 actions and each adds a key-value pair in context, by the 10th action, there's at least pairs, not all of which are used at all.
Referencing https://github.com/adomokos/light-service/issues/9
The use case: In a
LS::Action
, I want to delete some unused values insidecontext
before handing it off to the next action in sequence.context
can get very messye.g. If there are 10 actions and each adds a key-value pair in context, by the 10th action, there's at least pairs, not all of which are used at all.