R/run_computation_task.R

#' RunComputationTask
#'
#' @export
#' @format \code{\link{R6Class}} object, super class \code{\link{SaveComputationResultTask}}.
#' @field parentTaskId of type String inherited from super class \code{\link{ComputationTask}}.
#' @field fileResultId of type String inherited from super class \code{\link{ComputationTask}}.
#' @field removeOnGC of type bool inherited from super class \code{\link{CubeQueryTask}}.
#' @field schemaIds list of type String inherited from super class \code{\link{CubeQueryTask}}.
#' @field projectId of type String inherited from super class \code{\link{ProjectTask}}.
#' @field duration of type double inherited from super class \code{\link{Task}}.
#' @field owner of type String inherited from super class \code{\link{Task}}.
#' @field taskHash of type String inherited from super class \code{\link{Task}}.
#' @field channelId of type String inherited from super class \code{\link{Task}}.
#' @field isDeleted of type bool inherited from super class \code{\link{PersistentObject}}.
#' @field rev of type String inherited from super class \code{\link{PersistentObject}}.
#' @field id of type String inherited from super class \code{\link{IdObject}}.
#' @field computedRelation object of class \code{\link{Relation}} inherited from super class \code{\link{ComputationTask}}.
#' @field query object of class \code{\link{CubeQuery}} inherited from super class \code{\link{CubeQueryTask}}.
#' @field environment list of class \code{\link{Pair}} inherited from super class \code{\link{Task}}.
#' @field state object of class \code{\link{State}} inherited from super class \code{\link{Task}}.
#' @field createdDate object of class \code{\link{Date}} inherited from super class \code{\link{Task}}.
#' @field lastModifiedDate object of class \code{\link{Date}} inherited from super class \code{\link{Task}}.
#' @field runDate object of class \code{\link{Date}} inherited from super class \code{\link{Task}}.
#' @field completedDate object of class \code{\link{Date}} inherited from super class \code{\link{Task}}.
#' @field aclContext object of class \code{\link{AclContext}} inherited from super class \code{\link{Task}}.
#' @field meta list of class \code{\link{Pair}} inherited from super class \code{\link{Task}}.
RunComputationTask <- R6::R6Class("RunComputationTask", inherit = SaveComputationResultTask,
    public = list(initialize = function(json = NULL) {
        super$initialize(json = json)
    }, init = function() {
        super$init()
    }, initJson = function(json) {
        super$initJson(json)
    }, toTson = function() {
        m = super$toTson()
        m$kind = tson.scalar("RunComputationTask")
        return(m)
    }))
tercen/teRcenApi documentation built on Feb. 8, 2024, 5:59 p.m.