mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
markTime -> userMark; queueEmpty -> idle
This commit is contained in:
12
R/graph.R
12
R/graph.R
@@ -367,10 +367,10 @@ RLog <- R6Class(
|
||||
}
|
||||
},
|
||||
|
||||
queueEmpty = function(domain = NULL) {
|
||||
msg$log("queueEmpty")
|
||||
idle = function(domain = NULL) {
|
||||
msg$log("idle")
|
||||
private$appendEntry(domain, list(
|
||||
action = "queueEmpty"
|
||||
action = "idle"
|
||||
))
|
||||
},
|
||||
|
||||
@@ -409,10 +409,10 @@ RLog <- R6Class(
|
||||
self$thawReactiveVal(self$keyIdStr(reactId, key), domain)
|
||||
},
|
||||
|
||||
markTime = function(domain = NULL) {
|
||||
msg$log("markTime")
|
||||
userMark = function(domain = NULL) {
|
||||
msg$log("userMark")
|
||||
private$appendEntry(domain, list(
|
||||
action = "markTime"
|
||||
action = "userMark"
|
||||
))
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ reactLogHandler <- function(req) {
|
||||
|
||||
# log time
|
||||
withReactiveDomain(shinysession, {
|
||||
rLog$markTime(getDefaultReactiveDomain())
|
||||
rLog$userMark(getDefaultReactiveDomain())
|
||||
})
|
||||
|
||||
return(httpResponse(
|
||||
|
||||
Reference in New Issue
Block a user