microsoft / cpprestsdk

The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
Other
8.01k stars 1.66k forks source link

Is cpprestsdk supports push notification #1028

Open fabriciolelis opened 5 years ago

fabriciolelis commented 5 years ago

Is cpprestsdk supports push notification. If no, what approach I could do to use push notification with cpprestsdk?

garethsb commented 5 years ago

WebSocket is supported by C++ REST SDK using websocket++. Is that the sort of push notification that you mean?

C++ REST SDK includes client-side support: web::websockets::client::websocket_client (see cpprest/ws_client.h).

For the server-side, web::websockets::experimental::listener::websocket_listener mentioned in #358 is found in my repo (see cpprest/ws_listener.h).