NAME
AnyEvent::Campfire::Client
VERSION
version 0.0.2
SYNOPSIS
use AnyEvent::Campfire::Client;
my $client = AnyEvent::Campfire::Client->new(
token => 'xxxx',
rooms => '1234',
account => 'p5-hubot',
);
$client->on(
'join',
sub {
my ($e, $room_id) = @_; # $e is event emitter. please ignore it.
$client->speak($room_id, "hi");
}
);
$client->on(
'message',
sub {
my ($e, $data) = @_;
# ...
}
);
## want to exit?
$client->exit;
AUTHOR
Hyungsuk Hong <hshong@perl.kr>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Hyungsuk Hong.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.