When the runtime creates an instance of a handler, it creates all of the resources the hander needs to process messages. While you can place all of the logic for doing this in the handler's constructor, it may not be the most appropriate place. The handler framework performs a number of optional steps when it instantiates a handler. You can add resource injection and other initialization logic that will be executed during the optional steps.
![]() | Tip |
---|---|
You do not have to provide any initialization methods for a handler. |
The FUSE Services Framework runtime initializes a handler in the following manner:
The handler's constructor is called.
Any resources that are specified by the @Resource
annotation are injected.
The method decorated with @PostConstruct
annotation, if it is
present, is called.
![]() | Note |
---|---|
Methods decorated with the |
The handler is place in the Ready
state.