Filip
Filip
Hi, I wonder why are builders immutable? e.g. I would like to do: ```java final YamlSequenceBuilder sequence = Yaml.createYamlSequenceBuilder(); list.stream().map(....).filter(...).forEach(sequence::add); ``` or: ```java final YamlMappingBuilder mapping = Yaml.createYamlMappingBuilder(); data.id().ifPresent(id ->...
**Is your feature request related to a problem? Please describe.** `HttpLoader` can load only RDF and JSON-LD documents. **Describe the solution you'd like** Allow to set custom `DocumentResolver` enabling custom...
Implement an asynchronous document loader (Future based?) support and prototype implementation. (vert.x?) usage ```java JsonLd.expand(...) .loader(AsyncDocumentLoader) // replaces default loader .getAsync(); // returns Future ```
**Is your feature request related to a problem? Please describe.** Sometimes a combination of contexts is needed. e.g. a combination of local and remote context. **Describe the solution you'd like**...
**Is your feature request related to a problem? Please describe.** `HttpLoader` does not distinguish between `http` and `https`. **Describe the solution you'd like** ```javascript HtttpLoader.defaultInstance().httpsOnly() ``` **Describe alternatives you've considered**...
**Is your feature request related to a problem? Please describe.** Huge documents might cause the processor to run for a long time. To avoid a service distribution by a malicious...
**Is your feature request related to a problem? Please describe.** A new artifact with RDF interfaces would help to write extensions providing RDF transformations, like normalization. Also, It would improve...
**Is your feature request related to a problem? Please describe.** This would allow to pass configured or a custom `JsonFactory` and it solves issue with `Json` initialization. see `JsonProvider` hack....