Revision history for Perl extension POE::Component::Client::Stomp.

0.01  Thu Aug 30 13:48:39 2007
	- original version; created by h2xs 1.23 with options
		-Axc -n POE::Component::Client::Stomp

0.02  03-Oct-2007 K.Esteb
    - Changed the module to be object oriented. I was having problems with
	  sub classing the module to reduce complexity. I also wanted a dispatcher
	  based on message types. This version does those things.
	  
0.03  09-Oct-2007 K.Esteb
    - Changed event/method "handle_send" to "send_data", it seemed more
	    syntactically correct with the new "gather_data" event/method.
	  Added accessors for stomp, config, host and port.
	  Added a log method, this method currently knows "warn" and "error"
	    levels. This should be overridden by your class, for your prefered
		logger.
	  Added a event/method "gather_data", it was needed to send the
	    object to the method.
	  Changed the internals to use the new accessors.
	  Added a couple of examples.
	  Made the reconnection code more robust. Probably needs more work.

0.04  15-Oct-2007 K.Esteb
	  Fixed the "Broken pipe" error.
	  Figured out how to require other modules. So Net::Stomp::Frame,
	    POE::Filter::Stomp and POE::Component::Client::Stomp::Utils are
	    now required modules.
	  Added a method "handle_shutdown" this should be orridden if specific 
	    stuff needs to be done when a shutdown has been initiated. By default 
		nothing will be done.
	  Fixed a syntax mistake in the documentation.
	  Added a granulated scheme for reconnection attempts.