Does Ktor have a “<Push API>”? I want clients to a...
# ktor
c
Does Ktor have a “Push API”? I want clients to automatically receive new data, even if it didn’t originate in their session.
k
Yes sure KTOR supports WebSocket Service: You can use https and wss on same port. : https://ktor.io/quickstart/guides/chat.html
c
ok, thank you. this seems to be the right direction.
k
No Problems. 😀
c
@Kepha awesome! That worked! 😄 You have to implement a websocket on the server side, as well as in JavaScript on the client side, for the conversations to work.