Polling Functionsdescribe-all-polling-functionsadd-polling-functionGoTo Top

add-polling-function   function &key priority[Function]

Purpose
Add a polling function to the list of polling functions at the position indicated by priority.

Package   :gbbopen-tools

Module   :polling-functions

Arguments and values

function     A function designator specifying a function object of no arguments
priority     A fixnum (default is 0)

Description
The description is printed to the *standard-output* stream.

See also
    describe-all-polling-functions
    remove-all-polling-functions
    remove-polling-function
    run-polling-functions

Example
Add the function check-for-new-connection to the list of polling functions (with priority -10):

  (add-polling-function #'check-for-new-connection
     :priority -10)


The GBBopen Project


Polling Functionsdescribe-all-polling-functionsadd-polling-functionGoTo Top