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

Description Usage Arguments Value See Also Examples

Description

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

Usage

1

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

1
2
3
4
5
6
# 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)
}

RSuite documentation built on June 10, 2019, 5:03 p.m.