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

 

Эта страница руководства является частью версии 5.0 Инструментов XCode

Получить эти инструменты:

Если Вы выполняете версию Инструментов XCode кроме 5,0, просматриваете документацию локально:

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

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

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

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

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




dispatch_api(3)          BSD Library Functions Manual          dispatch_api(3)

NAME
     dispatch_api -- Designing API using dispatch

DESCRIPTION
     The following is a brief summary of some of the common design patterns to consider when designing and
     implementing API in terms of dispatch queues and blocks.

     A general recommendation is to allow both a callback block and target dispatch queue to be specified.
     This gives the application the greatest flexibility in handling asynchronous events.

     It's also recommended that interfaces take only a single block as the last parameter. This is both for
     consistency across projects, as well as the visual aesthetics of multiline blocks that are declared
     inline. The dispatch queue to which the block will be submitted should immediately precede the block
     argument (second-to-last argument). For example:

           read_async(file, callback_queue, ^{
                   printf("received callback.\n");
           });

     When function pointer alternatives to interfaces that take blocks are provided, the argument order of
     the function signature should be identical to the block variant; with the exception that the block
     argument is replaced with a context pointer, and a new last parameter is added, which is the function
     to call.

     The function based callback should pass the context pointer as the first argument, and the subsequent
     arguments should be identical to the block based variant (albeit offset by one in order).

     It is also important to use consistent naming. The dispatch API, for example, uses the suffix "_f" for
     function based variants.

SEE ALSO
     dispatch(3), dispatch_async(3), dispatch_queue_create(3)

Darwin                            May 1, 2009                           Darwin

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

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

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