#' Checks whether or not a Cluster Node Runs in a Forked Process
#'
#' @param node A cluster node of class `SOCKnode` or `SOCK0node`.
#'
#' @param \ldots Not used.
#'
#' @return (logical) Returns TRUE if the cluster node is running in a
#' forked child process and FALSE if it does not.
#' If it cannot be inferred, NA is returned.
#'
#' @export
isForkedNode <- function(node, ...) UseMethod("isForkedNode")
#' @export
isForkedNode.default <- function(node, ...) NA
#' @export
isForkedNode.forknode <- function(node, ...) {
TRUE
}
#' @export
isForkedNode.cluster <- function(node, ...) {
vapply(node, FUN = isForkedNode, FUN.VALUE = NA)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.