The R Project SVN R

Rev

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

Rev 59039 Rev 61433
Line 30... Line 30...
30
    Typically this argument is not specified, and one uses \code{add} to
30
    Typically this argument is not specified, and one uses \code{add} to
31
    register callbacks after the manager is created.}
31
    register callbacks after the manager is created.}
32
  \item{registered}{a logical value indicating whether
32
  \item{registered}{a logical value indicating whether
33
    the \code{evaluate} function has already been registered
33
    the \code{evaluate} function has already been registered
34
    with the internal task callback mechanism.
34
    with the internal task callback mechanism.
35
    This is usually \code{FALSE} and 
35
    This is usually \code{FALSE} and
36
    the first time a callback is added
36
    the first time a callback is added
37
    via the \code{add} function, the
37
    via the \code{add} function, the
38
    \code{evaluate} function is automatically registered.
38
    \code{evaluate} function is automatically registered.
39
    One can control when the function is registered
39
    One can control when the function is registered
40
    by specifying \code{TRUE} for this argument
40
    by specifying \code{TRUE} for this argument
Line 74... Line 74...
74
}
74
}
75
\seealso{
75
\seealso{
76
  \code{\link{addTaskCallback}},
76
  \code{\link{addTaskCallback}},
77
  \code{\link{removeTaskCallback}},
77
  \code{\link{removeTaskCallback}},
78
  \code{\link{getTaskCallbackNames}}\\
78
  \code{\link{getTaskCallbackNames}}\\
79
  \url{http://developer.r-project.org/TaskHandlers.pdf}  
79
  \url{http://developer.r-project.org/TaskHandlers.pdf}
80
}
80
}
81
\examples{
81
\examples{
82
# create the manager
82
# create the manager
83
h <- taskCallbackManager()
83
h <- taskCallbackManager()
84
 
84