We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b517a53 commit 7a6958cCopy full SHA for 7a6958c
shiny/reactive/_reactives.py
@@ -89,6 +89,10 @@ def is_set(self) -> bool:
89
self._dependents.register()
90
return not isinstance(self._value, MISSING_TYPE)
91
92
+ # Like unset(), except that this does not invalidate dependents.
93
+ def freeze(self) -> None:
94
+ self._value = MISSING
95
+
96
97
# ==============================================================================
98
# Calc
0 commit comments