Skip to content

Commit f071866

Browse files
committed
Update shiny.js
1 parent d08af1a commit f071866

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

shiny/www/shared/shiny.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15583,7 +15583,7 @@
1558315583
if (opts.priority === "event") {
1558415584
this._sendNow();
1558515585
} else if (!this.sendIsEnqueued) {
15586-
this.shinyapp.actionQueue.enqueue(function() {
15586+
this.shinyapp.taskQueue.enqueue(function() {
1558715587
_this.sendIsEnqueued = false;
1558815588
_this._sendNow();
1558915589
});
@@ -17666,7 +17666,7 @@
1766617666
function ShinyApp2() {
1766717667
_classCallCheck36(this, ShinyApp2);
1766817668
_defineProperty18(this, "$socket", null);
17669-
_defineProperty18(this, "actionQueue", new AsyncQueue());
17669+
_defineProperty18(this, "taskQueue", new AsyncQueue());
1767017670
_defineProperty18(this, "config", null);
1767117671
_defineProperty18(this, "$inputValues", {});
1767217672
_defineProperty18(this, "$initialInput", null);
@@ -17875,7 +17875,7 @@
1787517875
_this.startActionQueueLoop();
1787617876
};
1787717877
socket.onmessage = function(e) {
17878-
_this.actionQueue.enqueue(/* @__PURE__ */ _asyncToGenerator8(/* @__PURE__ */ _regeneratorRuntime8().mark(function _callee2() {
17878+
_this.taskQueue.enqueue(/* @__PURE__ */ _asyncToGenerator8(/* @__PURE__ */ _regeneratorRuntime8().mark(function _callee2() {
1787917879
return _regeneratorRuntime8().wrap(function _callee2$(_context2) {
1788017880
while (1)
1788117881
switch (_context2.prev = _context2.next) {
@@ -17918,7 +17918,7 @@
1791817918
break;
1791917919
}
1792017920
_context3.next = 3;
17921-
return this.actionQueue.dequeue();
17921+
return this.taskQueue.dequeue();
1792217922
case 3:
1792317923
action = _context3.sent;
1792417924
_context3.prev = 4;

0 commit comments

Comments
 (0)