First page Back Continue Last page Summary Graphics
Callback Handlers Strategy
There are two strategies to consider when creating callback handlers
- In Process Handler
- Callback Handler gathers information from user within the handle method.
- Typically used in Applications or Applets
- Out of Process Handler
- Callback Handler gathers information from user through a separate process outside the handle method.
- Typically utilized in Web Applications were login procedure spans multiple requests.
Notes: