| OLD | NEW |
| 1 # Dart VM Service Protocol 1.0 (Draft 1) | 1 # Dart VM Service Protocol 1.0 (Draft 1) |
| 2 | 2 |
| 3 > Please post feedback to the observatory-discuss group: |
| 4 > |
| 5 > https://groups.google.com/a/dartlang.org/forum/#!forum/observatory-discuss |
| 6 |
| 3 This document describes _draft 1_ of _version 1.0_ of the Dart VM | 7 This document describes _draft 1_ of _version 1.0_ of the Dart VM |
| 4 Service Protocol. This protocol is used to communicate with a running | 8 Service Protocol. This protocol is used to communicate with a running |
| 5 Dart Virtual Machine. | 9 Dart Virtual Machine. |
| 6 | 10 |
| 7 To use the Service Protocol, start the VM with the *--observe* flag. | 11 To use the Service Protocol, start the VM with the *--observe* flag. |
| 8 The VM will start a webserver which services protocol requests via WebSocket. | 12 The VM will start a webserver which services protocol requests via WebSocket. |
| 9 It is possible to make HTTP (non-WebSocket) requests, | 13 It is possible to make HTTP (non-WebSocket) requests, |
| 10 but this does not allow access to VM _events_ and is not documented | 14 but this does not allow access to VM _events_ and is not documented |
| 11 here. | 15 here. |
| 12 | 16 |
| (...skipping 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1874 // A list of isolates running in the VM. | 1878 // A list of isolates running in the VM. |
| 1875 @Isolate[] isolates | 1879 @Isolate[] isolates |
| 1876 } | 1880 } |
| 1877 ``` | 1881 ``` |
| 1878 | 1882 |
| 1879 ## Revision History | 1883 ## Revision History |
| 1880 | 1884 |
| 1881 version | comments | 1885 version | comments |
| 1882 ------- | -------- | 1886 ------- | -------- |
| 1883 1.0 draft 1 | initial revision | 1887 1.0 draft 1 | initial revision |
| OLD | NEW |