Programming Interfaces in a Message-Driven Bean

There are a number of constraints on the contents of a Message-Driven Bean class which must

  • Implement the javax.ejb.MessageDrivenBean interface

  • Implement the javax.jms.MessageListener interface

  • Have a single constructor, with no arguments

  • Have a single public setMessageDrivenContext(MessageDrivenContext ctx) method that returns void

  • Have a single public ejbCreate() method with no arguments that returns void

  • Have a single public ejbRemove() method with no arguments that returns void

  • Have a single public onMessage(Message message) method that returns void

  • Not have a finalize() method

The following sections cover these methods in more detail.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.128.198.59