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
Use Cases
When I want to send notifications to the client or when i want to stream webcam images to the client I need to use streaming responses. if you look at EventSource and also server-sent-events in the mozilla developer network you can see some of the use cases for streaming responses specially for server-sent-events. also for video streaming and webcam image streaming there are many examples. if you search for webcam streaming or http live stream (HLS) you'll find many examples specially in python.
the examples and doc for every framework is provided using a hyperlink.
in c++ the wt and oat++ frameworks have this concept implemented. in python django, sanic and other frameworks have implamented this concept. in Java there is jooby and other frameworks which have implemented this feature. I haven't implemented any streaming web servers in other languages but since webcam (mjpeg) streaming and server-sent-events are standards and are used industry wide other languages and frameworks have probably implemented them.
The text was updated successfully, but these errors were encountered:
Use Cases
When I want to send notifications to the client or when i want to stream webcam images to the client I need to use streaming responses. if you look at EventSource and also server-sent-events in the mozilla developer network you can see some of the use cases for streaming responses specially for server-sent-events. also for video streaming and webcam image streaming there are many examples. if you search for webcam streaming or http live stream (HLS) you'll find many examples specially in python.
Solution
or maybe
Alternatives in different languages
in c++ the wt and oat++ frameworks have this concept implemented. in python django, sanic and other frameworks have implamented this concept. in Java there is jooby and other frameworks which have implemented this feature. I haven't implemented any streaming web servers in other languages but since webcam (mjpeg) streaming and server-sent-events are standards and are used industry wide other languages and frameworks have probably implemented them.
The text was updated successfully, but these errors were encountered: