You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'm considering how this may work using it in a long running web-server, are there any built in capabilities to manage space creep in things like :a-frame.interceptor-chain/history?
The text was updated successfully, but these errors were encountered:
sorry for the delay - i need to get GH notifications on my phone!
history is not global - it is local to a single event's interceptor-chain context - there are two possibilities:
if you are using a re-frame style dispatch against a single processor then each event's interceptor-chain context is created at the start of processing for that event, and discarded when processing for that event completes
if you are using dispatch-sync then you have full control - you get (a promise of) the interceptor-chain context back from dispatch-sync
with backend stuff it's actually turned out that i've used dispatch-sync exclusively (dispatch-sync is perhaps quite a confusing name - it's not synchronous, but it does synchronize on the result of fully processing an event. it's named after the re-frame dispatch-sync), in response to some external input such as an API request or a kafka message
Hi I'm considering how this may work using it in a long running web-server, are there any built in capabilities to manage space creep in things like
:a-frame.interceptor-chain/history
?The text was updated successfully, but these errors were encountered: