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
When I call exportWAV multiple times without waiting for it to execute its callback cb, using different callback functions each time, eventually only the last callback function I passed will fire, but it will fire multiple times.
This is because currCallback is held as an instance level variable - the intuitive behavior would be that the callback can be different for each call to exportWAV.
The text was updated successfully, but these errors were encountered:
When I call
exportWAV
multiple times without waiting for it to execute its callbackcb
, using different callback functions each time, eventually only the last callback function I passed will fire, but it will fire multiple times.This is because
currCallback
is held as an instance level variable - the intuitive behavior would be that the callback can be different for each call toexportWAV
.The text was updated successfully, but these errors were encountered: