Added option to stream directory items#203
Merged
GlassOfWhiskey merged 1 commit intomasterfrom Feb 3, 2026
Merged
Conversation
66757fa to
be7787b
Compare
This commit adds the option to stream the directory entities as described in the CAPIO-CL specification. It does this by spawning a new thread waiting for a new entry in the directory's CapioFile. It also fixes a bug on the condition of a condition variable within the CapioFile class, that previusly allowed threads waiting for data to continue only as soon as the CapioFile was committed, instead of when data was actually available.
be7787b to
514d721
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #203 +/- ##
==========================================
- Coverage 56.34% 56.06% -0.29%
==========================================
Files 71 71
Lines 3468 3480 +12
Branches 2151 2162 +11
==========================================
- Hits 1954 1951 -3
+ Misses 668 590 -78
- Partials 846 939 +93 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
GlassOfWhiskey
approved these changes
Feb 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit adds the option to stream the directory entities as described in the CAPIO-CL specification by spawning a new thread waiting for a new entry in the directory's CapioFile object.
It also fixes a bug on a condition variable within the CapioFile class, which previously allowed threads waiting for data to continue only as soon as the CapioFile was committed, instead of when data was actually available.