matthias-buttgereit / ta-rss

14 stars 0 forks source link

Make fetching and loading feeds actual asynchronous #3

Closed matthias-buttgereit closed 8 months ago

matthias-buttgereit commented 8 months ago

Starting the application it should immediately show the UI and the fetching of the (potential many) feeds should happen in another thread, to stay responsive. The list of feeds should be updated with received feeds by adding them to the corresponding vector.

(Arc::new(Mutex::new(Vec<Feed>));