Need Help?
For technical questions, feel free to ask on the Swiz mailing list.
Save as HTML or PDF
You can export this entire Wiki in HTML or PDF format.

Bean Life Cycle Management

Skip to end of metadata
Go to start of metadata

Page Contents:

Manually Creating and Destroying Beans

Swiz provides an event-based mechanism to create or destroy beans. To create a new bean, you can dispatch the BeanEvent.SET_UP_BEAN or BeanEvent.ADD_BEAN events:

Both SET_UP_BEAN and ADD_BEAN will process the target object as a bean. The difference between these events is that ADD_BEAN will also add the bean as a singleton to the BeanFactory cache, while SET_UP_BEAN does not add the new bean to the cache.


Similarly, to destroy a bean, you dispach the BeanEvent.TEAR_DOWN_BEAN or BeanEvent.REMOVE_BEAN events:

The tear down events mirror the set up events discussed previously: TEAR_DOWN_BEAN cleans up the target by removing injections, event handlers, etc., while REMOVE_BEAN cleans up the bean as well as removing it from the singleton cache in the BeanFactory.

Since BeanEvent is a bubbling event, you can dispatch it from a view. If you dispatch them from non-view beans, be sure you use an injected dispatcher so that Swiz can handle the event.


If necessary, you can directly call the setUpBean() and tearDownBean() methods on the BeanFactory. Since these methods both take a Bean instance as an argument, you can use the createBeanForSource() method on the BeanFactory to generate a Bean instance that you can then pass into the set up and tear down methods. However, in general the event-based approach to creating and tearing down beans should be the preferred approach.

[PostConstruct] and [PreDestroy]

Swiz provides two metadata tags which allow you to trigger methods when any bean is set up or torn down. You can decorate a public method with [PostConstruct] and that method will be invoked by the framework after the bean has been set up, had dependencies injected, and had mediators created. For example:


Similarly, a public method decorated with [PreDestroy] will be called when a bean is destroyed by Swiz. This would happen if a UI component is removed from the stage, or a module is unloaded.


SwizConfig Options

Six configuration options are available in the SwizConfig object to specify how UI components are handled by the framework. These are setUpEventType, setUpEventPhase, setUpEventPriority, and the corresponding tearDownEventType, tearDownEventPhase, and tearDownEventPriority. Normally, you can leave these at their default values. But if you need to, you can modify these to alter how Swiz creates and destroys beans that are UI components.

The default setUpEventType is "addedToStage". This means that whenever a UI component is added to the stage, Swiz will inspect the component and process any metadata it finds. Any dependency injections and event mediators will happen at this time. As mentioned, you may change this value if "addedToStage" is not ideal for your situation. "creationComplete" is another commonly used setUpEventType.

Be careful if you use an event type that occurs early in the Flex component life cycle, such as "preinitialize", since child components have not been created yet.

At the other end of the bean life cycle, the default tearDownEventType is "removedFromStage". This means that when a UI component is removed from the stage, Swiz will perform clean up activities such as removing event mediators.

If you require even more fine-grained control, you can specify alternative values for the phase and priority used for the set up and tear down of beans. Typically, these won't need to be changed, but the options are there in case they are needed.

You can also use the ISetUpValidator and ITearDownValidator interfaces with UI components to control whether set up or tear down are allowed.


Swiz and Flex Life Cycle Steps

Note that the Flex component lifecycle events shown in all of these tables outline the most common order, but that it is not universal. For example, when a Module is loaded, it will dispatch addedToStage before dispatching creationComplete. These inconsistencies are simply how the Flex SDK operates.


The following table shows the steps that Flex and Swiz will go through on application startup:

Type Step
Flex Preinitialize event
Swiz dispatcher set
Swiz Swiz created event
Swiz domain set
Swiz Global dispatcher set
Swiz Processors initialized
Swiz Bean factory initialized
Swiz setUpEvent and tearDownEvent values set from SwizConfig
Swiz Beans defined in the BeanProvider(s) are processed
Swiz (per bean) beanFactory.setUpBean()
Swiz (per bean) [Inject] processed
Swiz (per bean) [EventHandler] processed
Swiz (per bean) [Dispatcher] processed
Swiz (per bean) Default custom metadata processed
Swiz (per bean) [PostConstruct] processed
Flex Initialize event
Flex Creation complete event
Flex Added to stage event
Flex Display objects in the display list are processed (see table below)
Flex Application complete event
Flex Update complete event


The following table shows the steps that Flex and Swiz will go through when a new display object is set up:

Type Step
Flex Invalidation
Flex Property bindings
Flex Preinitialize
Flex Create children
Flex Initialize event
Flex Commit properties
Flex Resize
Flex Render
Flex Measure
Flex Set actual size
Flex Update display list
Flex Creation complete event
Flex Added event
Flex Added to stage event
Swiz beanFactory.setUpBean()
Swiz [Inject] processed
Swiz [EventHandler] processed
Swiz [Dispatcher] processed
Swiz Default custom metadata processed
Swiz [PostConstruct] processed
Swiz [ViewAdded] processed
Flex Update complete event


The following table shows the steps that Flex and Swiz will go through when a display object is torn down:

Type Step
Flex Removed event
Flex Removed from stage event
Swiz [PreDestroy] processed
Swiz [Inject] tear down
Swiz [EventHandler] tear down
Swiz [Dispatcher] tear down
Swiz Default custom metadata tear down
Swiz [ViewRemoved] processed
Labels:
None
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Jun 20, 2010

    Anonymous

    RE> At the other end of the bean life cycle, the default tearDownEventType is "removedFromStage". This means that when a UI component is removed from the stage, Swiz will perform clean up activities such as removing event mediators.

    This bit is very important to understanding. Developers may need to use [PreDestroy] which will be called after removedFromStage.

  2. Nov 01, 2010

    Anonymous

    How can I determine, that the Swiz initialized? For example, in my test case during setUp?

    1. Nov 01, 2010

      If you have a specific question, the mailing list would probably provide a better answer. But in general, I use the UIImpersonator in FlexUnit 4, since it handles making sure that the container being tested has been set up.

  3. Mar 09, 2011

    Flex will sometimes dispatch a REMOVED_FROM_STAGE event immediately followed by an ADDED_TO_STAGE event when the window is resized.  Does Swiz optimize this, or does this always result in a view teardown + setup cycle?

    See http://blogs.adobe.com/pmartin/2010/03/use_of_stage_ev.html

    1. Mar 09, 2011

      Nevermind, answered my own question: yes, Swiz does optimize away these superfluous events.  In case anyone's interested this is handled by BeanFactory methods tearDownEventHandler and addRemovedDisplayObject.