nicmr / fidelitas

Rust network audio player and web client using actix and crossbeam multithreading, websockets, libvlc, and an Elm frontend.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Switch to websockets

nicmr opened this issue · comments

commented

There's several reasons to implement our app with websockets over pure http:

  • the server will have to inform the client of changes in server-side app state
  • websockets support sending binary blobs, which will probably facilitate streaming support (#2)
commented

Some initial work on this issue has been contributed with e16e857

commented

Switch to websockets has been completed and will be merged with #12