deb-murano/releasenotes/notes/garbage-collection-50e78c4c9d47eba6.yaml
Kirill Zaitsev e9fe5b278c Cleanup, clarify newton release-notes
This commit clarifies, cleans and improves releasenotes for murano

Co-Authored-By: Maria Zlatkova <mzlatkova@mirantis.com>
Change-Id: I6591a62640f192be749c3c58a92dc00ef56dd736
2016-09-14 01:08:51 +03:00

12 lines
548 B
YAML

---
features:
- Introduced a new MuranoPL class ``io.murano.system.GC``
Now MuranoPL garbage collector can be used to
set up destruction dependencies between murano objects.
If object Foo is subscribed to object Bar's destruction,
it will be notified through a specific handler. If both
Foo and Bar are going to be destroyed during one execution session,
Foo will be destroyed after Bar.
You can omit the handler, in this case destruction order will also
be preserved. Handler can be a static or a usual function.