Skip to content

Instantly share code, notes, and snippets.

@riyafa
Created May 19, 2020 07:42
Show Gist options
  • Save riyafa/44bb33c34d3f6037b27e37cd71f3a1dd to your computer and use it in GitHub Desktop.
Save riyafa/44bb33c34d3f6037b27e37cd71f3a1dd to your computer and use it in GitHub Desktop.
Simple WebSocket echo server written in Ballerina language
import ballerina/http;
service websocket on new http:Listener(15300) {
resource function onText(http:WebSocketCaller caller, string text,
boolean finalFrame) {
checkpanic caller->pushText(text);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment