blob: ef8da1878018a7e273afc5d516d29b2be22b37cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
endpoint WebSocketClient
{
// Connection API
connected(i32 connection_id) =|
received(i32 connection_id, bool is_text, ByteBuffer data) =|
errored(i32 connection_id, i32 message) =|
closed(i32 connection_id, u16 code, String reason, bool clean) =|
// Certificate requests
certificate_requested(i32 connection_id) =|
}
|