Use Data::Serializer, instead of hardcoding YAML. Allow the type of serializer
[catagits/Catalyst-Engine-STOMP.git] / README
1 Catalyst-Engine-Stomp
2 =====================
3
4 This is a Catalyst engine which allows you to build a message-driven
5 application with STOMP. 
6
7 Controllers indicate queues, and message types indicate actions. A
8 controller base class is provided to handle YAML-serialized messages.
9
10 INSTALLATION
11
12 To install this module type the following:
13
14    perl Makefile.PL
15    make
16    make test
17    make install
18
19 DEPENDENCIES
20
21 This module requires these other modules and libraries:
22
23      Moose
24      Net::Stomp
25      YAML::XS
26      Data::Serializer
27      Catalyst::Engine::Embeddable
28      Catalyst::Runtime 5.80003
29      namespace::autoclean
30      
31 The supplied workers script requires MooseX::Workers, and you'll need
32 the relevant modules to support Data::Serializer if you choose
33 something other than YAML as a message format. 
34
35 COPYRIGHT AND LICENCE
36
37 Copyright (C) 2009 Venda Ltd
38
39 This library is free software; you can redistribute it and/or modify
40 it under the same terms as Perl itself, either Perl version 5.8.8 or,
41 at your option, any later version of Perl 5 you may have available.
42
43