The R Project SVN R

Rev

Rev 25118 | Rev 30915 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25118 Rev 27625
Line 43... Line 43...
43
}
43
}
44
\value{
44
\value{
45
  A list containing 6 functions:
45
  A list containing 6 functions:
46
  \item{add}{register a callback with this manager, giving the
46
  \item{add}{register a callback with this manager, giving the
47
    function, an optional 5-th argument, an optional name
47
    function, an optional 5-th argument, an optional name
48
    by which the the callback is stored in the list,
48
    by which the callback is stored in the list,
49
    and a \code{register} argument which controls whether
49
    and a \code{register} argument which controls whether
50
    the \code{evaluate} function is registered with the internal
50
    the \code{evaluate} function is registered with the internal
51
    C-level dispatch mechanism if necessary.}
51
    C-level dispatch mechanism if necessary.}
52
  \item{remove}{remove an element from the manager's collection
52
  \item{remove}{remove an element from the manager's collection
53
    of callbacks, either by name or position/index.}
53
    of callbacks, either by name or position/index.}
54
  \item{evaluate}{the \sQuote{real} callback function that is registered
54
  \item{evaluate}{the \sQuote{real} callback function that is registered
55
    with the C-level dispatch mechanism and which invokes each of the
55
    with the C-level dispatch mechanism and which invokes each of the
56
    R-leve callbacks within this manager's control.}
56
    R-level callbacks within this manager's control.}
57
  \item{suspend}{a function to set the suspend state
57
  \item{suspend}{a function to set the suspend state
58
    of the manager. If it is suspended, none of the callbacks will be
58
    of the manager. If it is suspended, none of the callbacks will be
59
    invoked when a task is completed. One sets the state by specifying
59
    invoked when a task is completed. One sets the state by specifying
60
    a logical value for the \code{status} argument.
60
    a logical value for the \code{status} argument.
61
  }
61
  }