Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

poe::component::irc::projects(3pm) [debian man page]

POE::Component::IRC::Projects(3pm)			User Contributed Perl Documentation			POE::Component::IRC::Projects(3pm)

NAME
POE::Component::IRC::Projects - A listing of projects that use POE::Component::IRC SYNOPSIS
perldoc POE::Component::IRC::Projects DESCRIPTION
POE::Component::IRC::Projects strives to document projects that are using POE::Component::IRC>. Projects can include subclasses, bot frameworks, bots, etc. The only stipulation for inclusion is that the project utilises POE::Component::IRC>. Inclusion to ( or inversely, exclusion from ) this list does not imply any sort of endorsement ( or disapproval ) of the said project. BOT FRAMEWORKS ( CPAN ) An alphabetically ordered list of bot frameworks, that are available on CPAN. Amethyst Amethyst is a bot core capable of handling parsing and routing of messages between connections and brains. Amethyst can handle an arbitrary number of connections of arbitrary types (given an appropriate module in Amethyst::Connection::*), routing these messages fairly arbitrarily through multiple processing cores (brains, live in Amethyst::Brain::*), and responding to these messages on other arbitrary connections. Bot::BasicBot Basic bot system designed to make it easy to do simple bots, optionally forking longer processes (like searches) concurrently in the background. Bot::Pluggable This is a very small (but important) part of a pluggable IRC bot framework. It provides the developer with a simply framework for writing Bot components as Perl modules. Bot::Infobot Bot::BasicBot::Pluggable based replacement for the venerable infobot. IRC::Bot A complete bot, similar to eggdrop using POE::Component::IRC. Allows access to all channel user management modes. Provides !seen functions, a complete help system, logging, dcc chat interface, and it runs as a daemon process. IRC::Bot utilizes Cache::FileCache for seen functions, and for session handling. ThreatNet::Bot::AmmoBot ThreatNet::Bot::AmmoBot is the basic foot soldier of the ThreatNet bot ecosystem, fetching ammunition and bringing it to the channel. It connects to a single ThreatNet channel, and then tails one or more files scanning for threat messages while following the basic channel rules. EXTENSIONS ( CPAN ) POE::Component::IRC::Plugin::RSS::Headlines A POE::Component::IRC plugin that provides RSS headline retrieval. POE::Component::IRC::Plugin::URI::Find A POE::Component::IRC plugin that finds URIs in channel traffic. POE::Component::IRC::Plugin::POE::Knee A POE::Component::IRC plugin that runs Acme::POE::Knee races. POE::Component::IRC::Plugin::Blowfish A POE::Component::IRC plugin that provides blowfish encryption. POE::Component::IRC::Plugin::YouTube::MovieFindStore A plugin for finding, resolving .FLV, and optionally storing YouTube URIs. POE::Component::IRC::Object A slightly simpler OO interface to PoCoIRC POE::Component::IRC::Onjoin This module implements a class that provides moved message and onjoin services as an IRC bot. Based on the configuration parameters passed to it via its constructor it will connect to a channel on a server and immediately send everyone on that channel a message privately. It will also send the same message to the channel itself publically at the specified interval. All users joining the channel thereafter will also receive the message. PROXIES
/ BOUNCERS ( CPAN ) App::Bondage A featureful easy-to-use IRC bouncer. perl v5.14.2 2011-12-07 POE::Component::IRC::Projects(3pm)

Check Out this Related Man Page

POE::Component::IRC::Plugin::Connector(3pm)		User Contributed Perl Documentation	       POE::Component::IRC::Plugin::Connector(3pm)

NAME
POE::Component::IRC::Plugin::Connector - A PoCo-IRC plugin that deals with the messy business of staying connected to an IRC server SYNOPSIS
use POE qw(Component::IRC Component::IRC::Plugin::Connector); my $irc = POE::Component::IRC->spawn(); POE::Session->create( package_states => [ main => [ qw(_start lag_o_meter) ], ], ); $poe_kernel->run(); sub _start { my ($kernel, $heap) = @_[KERNEL ,HEAP]; $irc->yield( register => 'all' ); $heap->{connector} = POE::Component::IRC::Plugin::Connector->new(); $irc->plugin_add( 'Connector' => $heap->{connector} ); $irc->yield ( connect => { Nick => 'testbot', Server => 'someserver.com' } ); $kernel->delay( 'lag_o_meter' => 60 ); return; } sub lag_o_meter { my ($kernel,$heap) = @_[KERNEL,HEAP]; print 'Time: ' . time() . ' Lag: ' . $heap->{connector}->lag() . " "; $kernel->delay( 'lag_o_meter' => 60 ); return; } DESCRIPTION
POE::Component::IRC::Plugin::Connector is a POE::Component::IRC plugin that deals with making sure that your IRC bot stays connected to the IRC network of your choice. It implements the general algorithm as demonstrated at <http://poe.perl.org/?POE_Cookbook/IRC_Bot_Reconnecting>. METHODS
"new" Takes two optional arguments: 'delay', the frequency, in seconds, at which the plugin will ping the IRC server. Defaults to 300. 'reconnect', the time in seconds, to wait before trying to reconnect to the server. Defaults to 60. 'servers', an array reference of IRC servers to consider. Each element should be an array reference containing a server host and (optionally) a port number. The plugin will cycle through this list of servers whenever it reconnects. Returns a plugin object suitable for use in POE::Component::IRC's "plugin_add" method. "lag" Returns the current 'lag' in seconds between sending PINGs to the IRC server and getting PONG responses. Probably not likely to be wholely accurate. AUTHOR
Chris "BinGOs" Williams <chris@bingosnet.co.uk> SEE ALSO
POE::Component::IRC POE::Component::IRC::Plugin perl v5.14.2 2011-12-07 POE::Component::IRC::Plugin::Connector(3pm)
Man Page