This repository was archived by the owner on Oct 16, 2020. It is now read-only.
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
Add Streaming Support #150
Closed
Description
microsoft/language-server-protocol#182
The underlying TypeScript service doesn't support this, but we could achieve some streaming on our layer:
- First ask for e.g. 20 workspace symbols and emit the partial result, then ask for all and emit the rest
- Fetch & compile files incrementally and stream new references found
The foundations for this are all there with the introduction of Observables into the codebase.