-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable to skip content reading/materialization #234
Comments
There is nothing in the JSON-P API that prevents an implementation from lazily fetching entries, is there? My understanding is that the call to |
This is my understanding as well. There is also JsonParser#skipObject() and skipArray() which can be used to avoid even having to manifest the skipped events. |
There is nothing which enforces it so assume it is not the case (spec world). |
Does JSON-P even have a published spec? All I can find is the API. |
There is no spec document for JSON-P. The Javadocs/TCK constitute the spec. |
Follow up of jakartaee/jsonb-api#224 (comment)
Would be neat to have a way to skip some elements so instead of materializing it. Concretely it means next will need a skip equivalent, visiting the stream but ignoring the content. GetXxx would fail if called after a skip.
The text was updated successfully, but these errors were encountered: