OLD | NEW |
1 | 1 |
2 class WebSocketJs extends DOMTypeJs implements WebSocket native "*WebSocket" { | 2 class _WebSocketJs extends _DOMTypeJs implements WebSocket native "*WebSocket" { |
3 WebSocket(String url) native; | 3 WebSocket(String url) native; |
4 | 4 |
5 | 5 |
6 static final int CLOSED = 3; | 6 static final int CLOSED = 3; |
7 | 7 |
8 static final int CLOSING = 2; | 8 static final int CLOSING = 2; |
9 | 9 |
10 static final int CONNECTING = 0; | 10 static final int CONNECTING = 0; |
11 | 11 |
12 static final int OPEN = 1; | 12 static final int OPEN = 1; |
(...skipping 11 matching lines...) Expand all Loading... |
24 String get protocol() native "return this.protocol;"; | 24 String get protocol() native "return this.protocol;"; |
25 | 25 |
26 int get readyState() native "return this.readyState;"; | 26 int get readyState() native "return this.readyState;"; |
27 | 27 |
28 String get url() native "return this.url;"; | 28 String get url() native "return this.url;"; |
29 | 29 |
30 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 30 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
31 | 31 |
32 void close([int code = null, String reason = null]) native; | 32 void close([int code = null, String reason = null]) native; |
33 | 33 |
34 bool dispatchEvent(EventJs evt) native; | 34 bool dispatchEvent(_EventJs evt) native; |
35 | 35 |
36 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 36 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
37 | 37 |
38 bool send(String data) native; | 38 bool send(String data) native; |
39 } | 39 } |
OLD | NEW |