Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaputo committed Aug 18, 1998
1 parent 53cd540 commit 6569e47
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 18 deletions.
2 changes: 0 additions & 2 deletions lib/POE/Driver.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Driver; package POE::Driver;


my $VERSION = 1.0;

use strict; use strict;


#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Driver/SysRW.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Driver::SysRW; package POE::Driver::SysRW;


my $VERSION = 1.0;

use strict; use strict;
use POSIX qw(EAGAIN); use POSIX qw(EAGAIN);


Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Filter.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Filter; package POE::Filter;


my $VERSION = 1.0;

use strict; use strict;


#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Filter/Line.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Filter::Line; package POE::Filter::Line;


my $VERSION = 1.0;

use strict; use strict;


#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
Expand Down
16 changes: 14 additions & 2 deletions lib/POE/Kernel.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Kernel; package POE::Kernel;


my $VERSION = 1.0;

use strict; use strict;
use POSIX qw(EINPROGRESS EINTR); use POSIX qw(EINPROGRESS EINTR);
use IO::Select; use IO::Select;
Expand Down Expand Up @@ -683,6 +681,20 @@ Registers a CODE reference (C<$state_code>) for the event C<$state_name> in
the currently active C<POE::Session>. If C<$state_code> is undefined, then the currently active C<POE::Session>. If C<$state_code> is undefined, then
the named state will be removed. the named state will be removed.
=item $kernel->alarm($state_name, $time, @etc)
Posts a state for a specific future time, with possible extra parameters. The
time is represented as system time, just like C<time()> returns. If C<$time>
is zero, then the alarm is cleared. Otherwise C<$time> is clipped to no
earlier than the current C<time()>.
The current session will receive its C<$state_name> event when C<time()>
catches up with C<$time>.
Any given C<$state_name> may only have one alarm pending. Setting a subsequent
alarm for an existing state will clear all pending events for that state, even
if the existing states were not enqueued by previous calls to C<alarm()>.
=back =back
=head1 PROTECTED METHODS =head1 PROTECTED METHODS
Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Session.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Session; package POE::Session;


my $VERSION = 1.0;

use strict; use strict;
use Carp; use Carp;


Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Wheel.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Wheel; package POE::Wheel;


my $VERSION = 1.0;

use strict; use strict;


#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Wheel/ListenAccept.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Wheel::ListenAccept; package POE::Wheel::ListenAccept;


my $VERSION = 1.0;

use strict; use strict;
use Carp; use Carp;
use POSIX qw(EAGAIN); use POSIX qw(EAGAIN);
Expand Down
2 changes: 0 additions & 2 deletions lib/POE/Wheel/ReadWrite.pm
Expand Up @@ -3,8 +3,6 @@


package POE::Wheel::ReadWrite; package POE::Wheel::ReadWrite;


my $VERSION = 1.0;

use strict; use strict;
use Carp; use Carp;


Expand Down

0 comments on commit 6569e47

Please sign in to comment.