| CSVConnection {shinyChatR} | R Documentation |
CSVConnection R6 Class
Description
CSVConnection R6 Class
CSVConnection R6 Class
Details
An R6 class representing a connection to a CSV file for the chat module.
Value
The full dataset
Save a message to data source
Public fields
csv_pathThe path to the CSV file.
nlastThe number of messages to be read in and displayed.
Initialize the R6 Object
Methods
Public methods
Method new()
Usage
CSVConnection$new(csv_path, nlast = NULL)
Arguments
csv_pathThe path to the csv file.
nlastThe number of messages to be read-in.
Method get_data()
Reads the full dataset
Usage
CSVConnection$get_data()
Method insert_message()
Usage
CSVConnection$insert_message(message, user, time)
Arguments
messageThe message to be stores
userThe user who entered the message
timeThe time when message was submitted
Method clone()
The objects of this class are cloneable with this method.
Usage
CSVConnection$clone(deep = FALSE)
Arguments
deepWhether to make a deep clone.
[Package shinyChatR version 1.2.0 Index]