Transport + Synth.deferCallbacks(true)
-
What's the interaction? The transport handler is created and the callback is set in on init. If a script processor is deferred, its realtime callbacks become non-realtime.
How does this affect the transport callback?
-
@aaronventure You can control this individually for each callback and the deferCallback() for the other callbacks do not apply here.
https://docs.hise.audio/scripting/scripting-api/transporthandler/index.html
You can specify the mode when you pass in the callbacks into the register functions. Be aware that each transport handler has two slots, so you can register two different callbacks for the synchronous and asynchronous execution.
-
@Christoph-Hart said in Transport + Synth.deferCallbacks(true):
deferCallback() for the other callbacks do not apply here.
Great, this is what I was after. Thanks!