logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Event::RPC::Loop::Event - Event mainloop for Event::RPC

Authors

         Jörn Reder <joern AT zyn.de>

Description

       This modules implements a mainloop using the Event module for the Event::RPC::Server module. It
       implements the interface of Event::RPC::Loop. Please refer to the manpage of Event::RPC::Loop for
       details.

Name

       Event::RPC::Loop::Event - Event mainloop for Event::RPC

Synopsis

         use Event::RPC::Server;
         use Event::RPC::Loop::Event;

         my $server = Event::RPC::Server->new (
             ...
             loop => Event::RPC::Loop::Event->new(),
             ...
         );

         $server->start;

See Also