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
Some outputs may support flushing the file earlier and starting another one as per request or some other event.
As the event should be bypassed as a part of the stream, the wrapper Managed is introduced. The Managed allows to specify the signal and data at the same time, and hence react accordingly.
data classManaged<S, T> (
valsignal:S?,
valdata:T?
)
For the output, the signal Flush would be introduced:
typealiasOutputSignalIntconstvalFlushSignal=0x01
As long as the output gets the FlushSignal it flushes the current written buffer and starts the new buffer over.
Output should support the name generation strategies or use default ones.
The current candidates to support flush are wav, csv and dev-null outputs.
The text was updated successfully, but these errors were encountered:
Some outputs may support flushing the file earlier and starting another one as per request or some other event.
As the event should be bypassed as a part of the stream, the wrapper
Managed
is introduced. TheManaged
allows to specify the signal and data at the same time, and hence react accordingly.For the output, the signal
Flush
would be introduced:As long as the output gets the FlushSignal it flushes the current written buffer and starts the new buffer over.
Output should support the name generation strategies or use default ones.
The current candidates to support flush are
wav
,csv
anddev-null
outputs.The text was updated successfully, but these errors were encountered: