arne-bdt opened a new issue, #3969:
URL: https://github.com/apache/jena/issues/3969

   ### Version
   
   6.2.0-SNAPSHOT
   
   ### Feature
   
   **`DatasetGraph.stream(...)` wraps `find(...)` instead of streaming 
natively**
   
   `DatasetGraph.stream(g,s,p,o)` is a default that adapts the iterator API via 
`Iter.asStream(find(g,s,p,o))`, so every stream call goes through iterator 
machinery — even for datasets that could produce a `Stream` directly (the 
in-memory dataset, graph-backed datasets whose `Graph` already exposes 
`stream()`).
   
   Give `DatasetGraph` native `stream()` implementations that parallel the 
default-graph / named-graph / union split already used by `find()`. Results 
must be identical to `find()` for every access pattern.
   
   ### Are you interested in contributing a solution yourself?
   
   Yes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to