]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/perl/lib/OpenSRF/Transport/Listener.pm
LP1999823: Bump libtool library version
[OpenSRF.git] / src / perl / lib / OpenSRF / Transport / Listener.pm
1 package OpenSRF::Transport::Listener;
2 use base 'OpenSRF';
3 use OpenSRF::Utils::Logger qw(:level);
4
5 =head1 Description
6
7 This is the empty class that acts as the subclass of the transport listener.  My API
8 includes
9
10 new( $app )
11         create a new Listener with appname $app
12
13 initialize()
14         Perform any transport layer connections/authentication.
15
16 listen()
17         Block, wait for, and process incoming messages
18
19 =cut
20
21 1;