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
{{ message }}
This repository has been archived by the owner on May 13, 2022. It is now read-only.
The user currently has the option to set an input limit on stages. Once this limit is reached thread execution is blocked until the internal buffer has room for more objects.
There are circumstances in which this behaviour might be undesirable. ddrf should therefore offer the following three policies:
block (default): The current behaviour. Block thread execution until there is room for another object.
discard: If the buffer is full, discard the current object.
overwrite: If the buffer is full, delete the oldest object and push the current object.
The text was updated successfully, but these errors were encountered:
The user currently has the option to set an input limit on stages. Once this limit is reached thread execution is blocked until the internal buffer has room for more objects.
There are circumstances in which this behaviour might be undesirable. ddrf should therefore offer the following three policies:
The text was updated successfully, but these errors were encountered: