after.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: after.n,v 1.3.18.2 2004/10/27 14:23:41 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH after n 7.5 Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. after - Execute a command after a time delay
  16. .SH SYNOPSIS
  17. fBafter fImsfR
  18. .sp
  19. fBafter fIms fR?fIscript script script ...fR?
  20. .sp
  21. fBafter cancel fIidfR
  22. .sp
  23. fBafter cancel fIscript script script ...fR
  24. .sp
  25. fBafter idle fR?fIscript script script ...fR?
  26. .sp
  27. fBafter info fR?fIidfR?
  28. .BE
  29. .SH DESCRIPTION
  30. .PP
  31. This command is used to delay execution of the program or to execute
  32. a command in background sometime in the future.  It has several forms,
  33. depending on the first argument to the command:
  34. .TP
  35. fBafter fImsfR
  36. fIMsfR must be an integer giving a time in milliseconds.
  37. The command sleeps for fImsfR milliseconds and then returns.
  38. While the command is sleeping the application does not respond to
  39. events.
  40. .TP
  41. fBafter fIms fR?fIscript script script ...fR?
  42. In this form the command returns immediately, but it arranges
  43. for a Tcl command to be executed fImsfR milliseconds later as an
  44. event handler.
  45. The command will be executed exactly once, at the given time.
  46. The delayed command is formed by concatenating all the fIscriptfR
  47. arguments in the same fashion as the fBconcatfR command.
  48. The command will be executed at global level (outside the context
  49. of any Tcl procedure).
  50. If an error occurs while executing the delayed command then the
  51. fBbgerrorfR mechanism is used to report the error.
  52. The fBafterfR command returns an identifier that can be used
  53. to cancel the delayed command using fBafter cancelfR.
  54. .TP
  55. fBafter cancel fIidfR
  56. Cancels the execution of a delayed command that
  57. was previously scheduled.
  58. fIIdfR indicates which command should be canceled;  it must have
  59. been the return value from a previous fBafterfR command.
  60. If the command given by fIidfR has already been executed then
  61. the fBafter cancelfR command has no effect.
  62. .TP
  63. fBafter cancel fIscript script ...fR
  64. This command also cancels the execution of a delayed command.
  65. The fIscriptfR arguments are concatenated together with space
  66. separators (just as in the fBconcatfR command).
  67. If there is a pending command that matches the string, it is
  68. cancelled and will never be executed;  if no such command is
  69. currently pending then the fBafter cancelfR command has no effect.
  70. .TP
  71. fBafter idle fIscript fR?fIscript script ...fR?
  72. Concatenates the fIscriptfR arguments together with space
  73. separators (just as in the fBconcatfR command), and arranges
  74. for the resulting script to be evaluated later as an idle callback.
  75. The script will be run exactly once, the next time the event
  76. loop is entered and there are no events to process.
  77. The command returns an identifier that can be used
  78. to cancel the delayed command using fBafter cancelfR.
  79. If an error occurs while executing the script then the
  80. fBbgerrorfR mechanism is used to report the error.
  81. .TP
  82. fBafter info fR?fIidfR?
  83. This command returns information about existing event handlers.
  84. If no fIidfR argument is supplied, the command returns
  85. a list of the identifiers for all existing
  86. event handlers created by the fBafterfR command for this
  87. interpreter.
  88. If fIidfR is supplied, it specifies an existing handler;
  89. fIidfR must have been the return value from some previous call
  90. to fBafterfR and it must not have triggered yet or been cancelled.
  91. In this case the command returns a list with two elements.
  92. The first element of the list is the script associated
  93. with fIidfR, and the second element is either
  94. fBidlefR or fBtimerfR to indicate what kind of event
  95. handler it is.
  96. .LP
  97. The fBafter fImsfR and fBafter idlefR forms of the command
  98. assume that the application is event driven:  the delayed commands
  99. will not be executed unless the application enters the event loop.
  100. In applications that are not normally event-driven, such as
  101. fBtclshfR, the event loop can be entered with the fBvwaitfR
  102. and fBupdatefR commands.
  103. .SH "EXAMPLES"
  104. This defines a command to make Tcl do nothing at all for fINfR
  105. seconds:
  106. .CS
  107. proc sleep {N} {
  108.    fBafterfR [expr {int($N * 1000)}]
  109. }
  110. .CE
  111. .PP
  112. This arranges for the command fIwake_upfR to be run in eight hours
  113. (providing the event loop is active at that time):
  114. .CS
  115. fBafterfR [expr {1000 * 60 * 60 * 8}] wake_up
  116. .CE
  117. .PP
  118. The following command can be used to do long-running calculations (as
  119. represented here by fI::my_calc::one_stepfR, which is assumed to
  120. return a boolean indicating whether another step should be performed)
  121. in a step-by-step fashion, though the calculation itself needs to be
  122. arranged so it can work step-wise.  This technique is extra careful to
  123. ensure that the event loop is not starved by the rescheduling of
  124. processing steps (arranging for the next step to be done using an
  125. already-triggered timer event only when the event queue has been
  126. drained) and is useful when you want to ensure that a Tk GUI remains
  127. responsive during a slow task.
  128. .CS
  129. proc doOneStep {} {
  130.    if {[::my_calc::one_step]} {
  131.       fBafter idlefR [list fBafterfR 0 doOneStep]
  132.    }
  133. }
  134. doOneStep
  135. .CE
  136. .SH "SEE ALSO"
  137. bgerror(n), concat(n), update(n), vwait(n)
  138. .SH KEYWORDS
  139. cancel, delay, idle callback, sleep, time