Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



update(n)                                   Tcl Built-In Commands                                  update(n)



____________________________________________________________________________________________________________

NAME
       update - Process pending events and idle callbacks

SYNOPSIS
       update ?idletasks?
____________________________________________________________________________________________________________


DESCRIPTION
       This  command  is  used  to  bring the application "up to date" by entering the event loop repeatedly
       until all pending events (including idle callbacks) have been processed.

       If the idletasks keyword is specified as an argument to the command, then no new events or errors are
       processed;  only idle callbacks are invoked.  This causes operations that are normally deferred, such
       as display updates and window layout calculations, to be performed immediately.

       The update idletasks command is useful in scripts where changes have been made to  the  application's
       state  and  you  want those changes to appear on the display immediately, rather than waiting for the
       script to complete.  Most display updates are performed as idle callbacks, so update  idletasks  will
       cause  them to run.  However, there are some kinds of updates that only happen in response to events,
       such as those triggered by window size changes; these updates will not occur in update idletasks.

       The update command with no options is useful in scripts where you are performing a long-running  com-putation computation
       putation  but  you still want the application to respond to events such as user interactions;  if you
       occasionally call update then user input will be processed during the next call to update.

EXAMPLE
       Run computations for about a second and then finish:
              set x 1000
              set done 0
              after 1000 set done 1
              while {!$done} {
                  # A very silly example!
                  set x [expr {log($x) ** 2.8}]

                  # Test to see if our time-limit has been hit.  This would
                  # also give a chance for serving network sockets and, if
                  # the Tk package is loaded, updating a user interface.
                  update
              }


SEE ALSO
       after(n), interp(n)


KEYWORDS
       event, flush, handler, idle, update



Tcl                                                  7.5                                           update(n)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Tcl.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Tcl через их страницу создания отчетов ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.