Document the closed method for Session.

This commit is contained in:
Colin Kuskie 2010-11-12 11:37:02 -08:00
parent a1571b90d4
commit 40c073e65e

View file

@ -188,6 +188,14 @@ sub close {
$self->{closed} = 1;
}
#-------------------------------------------------------------------
=head2 closed
Returns true if this session has been closed.
=cut
sub closed {
my $self = shift;
return $self->{closed};