package Net::Delicious::Constants::Pause; use strict; # $Id: Pause.pm,v 1.12 2007/03/25 15:32:25 asc Exp $ =head1 NAME Net::Delicious::Constants::Pause - =head1 SYNOPSIS use Net::Delicious::Constants qw (:pause) =head1 DESCRIPTION Constant variables for del.icio.us =cut $Net::Delicious::Constants::Pause::VERSION = '1.11'; =head1 CONSTANTS =cut =head2 PAUSE_ONSTATUS Int. =cut use constant PAUSE_ONSTATUS => 503; =head2 PAUSE_MAXTRIES Int. =cut use constant PAUSE_MAXTRIES => 10; =head2 PAUSE_SECONDS_OK Float. =cut use constant PAUSE_SECONDS_OK => 0.75; =head2 PAUSE_SECONDS_OK Float. =cut use constant PAUSE_SECONDS_UNAVAILABLE => PAUSE_SECONDS_OK * 2; BEGIN { use vars qw (@EXPORT_OK); @EXPORT_OK = qw (PAUSE_ONSTATUS PAUSE_MAXTRIES PAUSE_SECONDS_OK PAUSE_SECONDS_UNAVAILABLE); } =head1 VERSION 1.11 =head1 DATE $Date: 2007/03/25 15:32:25 $ =head1 AUTHOR Aaron Straup Cope =head1 SEE ALSO L L =head1 LICENSE Copyright (c) 2004-2007 Aaron Straup Cope. All rights reserved. This is free software, you may use it and distribute it under the same terms as Perl itself. =cut return 1;