
Log Read Operation for ConnectorLogger class
Source:R/cnt_logger_generics.R
connector-logger-methods.Rd
Implementation of the log_read_connector function for the ConnectorLogger class.
Implementation of the log_write_connector function for the ConnectorLogger class.
Implementation of the log_remove_connector function for the ConnectorLogger class.
Implementation of the log_read_connector function for the ConnectorLogger class.
Implementation of the upload_cnt function for the ConnectorLogger class.
Implementation of the download_cnt function for the ConnectorLogger class.
This function prints the connector logger.
Usage
# S3 method for class 'ConnectorLogger'
read_cnt(connector_object, name, ...)
# S3 method for class 'ConnectorLogger'
tbl_cnt(connector_object, name, ...)
# S3 method for class 'ConnectorLogger'
write_cnt(connector_object, x, name, ...)
# S3 method for class 'ConnectorLogger'
remove_cnt(connector_object, name, ...)
# S3 method for class 'ConnectorLogger'
list_content_cnt(connector_object, ...)
# S3 method for class 'ConnectorLogger'
upload_cnt(
connector_object,
file,
name = basename(file),
overwrite = zephyr::get_option("overwrite", "connector"),
...
)
# S3 method for class 'ConnectorLogger'
download_cnt(connector_object, name, file = basename(name), ...)
# S3 method for class 'ConnectorLogger'
print(x, ...)
Arguments
- connector_object
The ConnectorLogger object.
- name
The name of the file in the connector.
- ...
Additional arguments
- x
The connector logger object
- file
The local file path to download to.
- overwrite
Overwrite existing content if it exists in the connector? See connector-options for details. Default can be set globally with
options(connector.overwrite = TRUE/FALSE)
or environment variableR_CONNECTOR_OVERWRITE
.. Default:FALSE
.