You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support nodes that release their value after reading them X times.
Add a new ConfigNodeProcessor that decorators a property based on several regex. The decorator counts the number of times the getValue has been called. If it is more than the X configured, it releases the node it decorates.
The text was updated successfully, but these errors were encountered:
feat: move ConfigNode processing to a new ConfigNodeProcessorService.
Order Config Node Processors.
Add a service interface for ObservationService and ResultProcessorService, so users can implement their own if they wish.
This is a Breaking change for the GestaltBuilder. It should impact very few people as i dont really expect many people to provide their own ObservationService, or ResultProcessorService and if they do it is an easy change.
Checks if the node is a leaf and a temporary secret. if it is, replaces the leaf node with a TemporaryLeafNode that can only be accessed a limited number of times. After the limited number of times, the value is released to be GC'ed. #197
Support nodes that release their value after reading them X times.
Add a new ConfigNodeProcessor that decorators a property based on several regex. The decorator counts the number of times the
getValue
has been called. If it is more than the X configured, it releases the node it decorates.The text was updated successfully, but these errors were encountered: