You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The networking component should be able to request pagesthrough the http(s) protocol and return an html stream (or any other stream).
It should be configurable how fast it be. For instance, we should allow throttling to emulate slow connections.
We should be able to configure tls, ca roots etc
Networking should be done on other threads than the main. The main will request a resource and continues with other work (or blocks, if wanted so). Once ready, the thread will notify the ui for ready and can continue. This may also become a async/await process.
There can be a cachelayer for resources, where we can just query for new updates (not modified response), but this might live in another component.
There should be a certain number of threads ready for processing queries, like a webserver.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The networking component should be able to request pagesthrough the http(s) protocol and return an html stream (or any other stream).
It should be configurable how fast it be. For instance, we should allow throttling to emulate slow connections.
We should be able to configure tls, ca roots etc
Networking should be done on other threads than the main. The main will request a resource and continues with other work (or blocks, if wanted so). Once ready, the thread will notify the ui for ready and can continue. This may also become a async/await process.
There can be a cachelayer for resources, where we can just query for new updates (not modified response), but this might live in another component.
There should be a certain number of threads ready for processing queries, like a webserver.
Beta Was this translation helpful? Give feedback.
All reactions