Difference between revisions of "Ns unschedule proc"

From AOLserver Wiki
Jump to navigation Jump to search
(Undo revision 5596 by VervoidsTerror (Talk) link spam)
 
(No difference)

Latest revision as of 14:50, 30 November 2009

Man page: http://aolserver.com/docs/tcl/ns_unschedule_proc.html


NAME

ns_unschedule_proc - Unschedule a previously scheduled script

SYNOPSIS

ns_unschedule_proc id

DESCRIPTION

This command unschedules a previous scheduled script. NOTE: Current behavior is to silently return without error if the id doesn't represent a currently scheduled ID.

EXAMPLES

   % set id [[ns_schedule_proc -once 60 { test }]]
   123
   % ns_unschedule_proc $id

SEE ALSO

ns_after, ns_info scheduled, ns_pause, ns_resume, ns_schedule_proc, ns_schedule_daily, ns_schedule_weekly

-