Learn R Programming

RSuite (version 0.37-253)

rc_adapter_create_base: Creates the base presentation for the RC adapter to use by concrete implementations.

Description

Creates the base presentation for the RC adapter to use by concrete implementations.

Usage

rc_adapter_create_base(name)

Arguments

name

name under which RC adapter will be registered in RSuite. It cannot contain whitespaces or comma. (type: character)

Value

object of type rsuite_rc_adapter

See Also

Other in extending RSuite with RC adapter: rc_adapter_get_version, rc_adapter_is_under_control, rc_adapter_pkg_struct_add, rc_adapter_prj_struct_add, rc_adapter_remove_admins

Examples

Run this code
# NOT RUN {
# create you own RC adapter
rc_adapter_create_own <- function() {
  result <- rc_adapter_create_base("Own")
  class(result) <- c("rc_adapter_own", class(result))
  return(result)
}

# }

Run the code above in your browser using DataLab