Learn R Programming

rsyncrosim (version 2.0.1)

silent: Silent status of SyncroSim Session

Description

Checks or sets whether a SyncroSim Session is silent or not. In a silent session, warnings from the console are ignored.

Usage

silent(session)

# S4 method for Session silent(session)

# S4 method for missingOrNULLOrChar silent(session)

silent(session) <- value

# S4 method for character silent(session) <- value

# S4 method for Session silent(session) <- value

Value

A logical: TRUE if the session is silent and FALSE otherwise.

Arguments

session

Session object or character (i.e. filepath to a session). If NULL, session() will be used

value

logical. If TRUE (default), the SyncroSim Session will be silent

Examples

Run this code
if (FALSE) {
# Set up a SyncroSim Session
mySession <- session()

# Check the silent status of a SyncroSim Session
silent(mySession)

# Set the silent status of a SyncroSim Session
silent(mySession) <- FALSE
}

Run the code above in your browser using DataLab