CGI-Session-Driver-bitbucket

 view release on metacpan or  search on metacpan

lib/CGI/Session/Driver/bitbucket.pm  view on Meta::CPAN

    if( $self->{Log} ) {
	carp "bitbucket->remove($sid)";
    }
    return 1;    
}

=head2 traverse

Does nothing and always returns 1.

=cut

sub traverse {
    my ($self, $coderef) = @_;
	if( $self->{Log} ) {
		carp "bitbucket->traverse(@_)";
	}
	return 1;
}


# called before object is terminated
sub DESTROY {
    my $self = shift;
	if( $self->{Log} ) {
		carp "bitbucket->delete()";
	}
}


1;       

=head1 COPYRIGHT

CGI::Session::Driver::bitbucket is Copyright (C) 2005-2008 Jonathan Buhacoff.  All rights reserved.

=head1 LICENSE

This library is free software and can be modified and distributed under the same
terms as Perl itself. 


=head1 AUTHOR

Jonathan Buhacoff <jonathan@pnc.net> wrote CGI::Session::Driver::bitbucket

=head1 SEE ALSO

=over 4

=item *

L<CGI::Session|CGI::Session> - CGI::Session manual

=item *

L<CGI::Session::Tutorial|CGI::Session::Tutorial> - extended CGI::Session manual

=item *

L<CGI::Session::CookBook|CGI::Session::CookBook> - practical solutions for real life problems

=item *

B<RFC 2965> - "HTTP State Management Mechanism" found at ftp://ftp.isi.edu/in-notes/rfc2965.txt

=item *

L<CGI|CGI> - standard CGI library

=item *

L<Apache::Session|Apache::Session> - an alternative to CGI::Session

=back

=cut



( run in 0.561 second using v1.01-cache-2.11-cpan-6aa56a78535 )