@Documented @Inherited @Retention(value=RUNTIME) @Target(value=METHOD) @Lifecycle public @interface Destroyed
@Destroyed
event is raised by the Context
after all
components on the context have been passivated (The contexts that cannot
detect their passivation such as Prototype
and Thread
will
never raise this lifecycle event). This is the final component lifecycle, so
the dispose of any resources should be implemented in the component method
listening to this lifecycle.
There are several conventions on @Destroyed
event listener method
declaration:
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.