R/Class-Healthcheck.R

Defines functions Healthcheck

Documented in Healthcheck

# Copyright 2018 Opening Reproducible Research (https://o2r.info)

#' Healthcheck-instruction class yet to be implemented
#' @include Class-Instruction.R
#'
#' See official documentation at \url{https://docs.docker.com/engine/reference/builder/#healthcheck}.
#'
#' @return object
#' @family instruction classes
#' @examples
#' #no example yet
setClass("Healthcheck", contains = "Instruction")

#' Healthcheck constructor yet to be implemented
#'
#' @param ... fields yet to be implemented
#'
#' @return the object
#' @examples
#' #no example yet
Healthcheck <- function(...) {
  stop("Constructor not yet implemented for this class.")
}

setMethod("docker_arguments",
          signature(obj = "Healthcheck"),
          function(obj) {
            stop("The generic function docker_arguments is not implemented for class ",
                 class(obj))
          })
o2r-project/containerit documentation built on June 28, 2021, 2:46 p.m.