Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: runtime/vm/service/protocol.md

Issue 823403004: Begin migrating the vm service from a rest-style interface to a json-rpc style interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: remove old-style standalone tests. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/service/message.dart ('k') | runtime/vm/service/running_isolates.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Dart VM Service Protocol 1 # Dart VM Service Protocol
2 2
3 NOTE: The service api is still changing rapidly. If you use the 3 NOTE: The service api is still changing rapidly. If you use the
4 service api, expect to encounter non-compatible changes. 4 service api, expect to encounter non-compatible changes.
5 5
6 Description 6 Description
7 How to start 7 How to start
8 JSON 8 JSON
9 Websocket 9 Websocket
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 141
142 Some properties returned by the VM Service begin with an underscore 142 Some properties returned by the VM Service begin with an underscore
143 (<code>_</code>) character. These properties are called _private 143 (<code>_</code>) character. These properties are called _private
144 properties_. Private properties provide private information about the 144 properties_. Private properties provide private information about the
145 VM's implementation. Private properties may be added, removed, or 145 VM's implementation. Private properties may be added, removed, or
146 changed at any time with any release of the VM. They are provided for 146 changed at any time with any release of the VM. They are provided for
147 those tools that need this level of internal access, such as the 147 those tools that need this level of internal access, such as the
148 Observatory. 148 Observatory.
149 149
150 For example, some responses will have the <code>_vmType</code> 150 For example, some responses will have the <code>_vmType</code>
151 nnnproperty. This provides the VM-internal type name of an object, and 151 property. This provides the VM-internal type name of an object, and
152 is provided only when this type name differs from the 152 is provided only when this type name differs from the
153 <code>type</code> property. 153 <code>type</code> property.
154 154
155 ## Events 155 ## Events
156 156
157 TODO 157 TODO
158 158
159 ## Catalog of Types 159 ## Catalog of Types
160 160
161 ### <a name="AbstractType"></a>AbstractType 161 ### <a name="AbstractType"></a>AbstractType
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 | targetCPU | String | 533 | targetCPU | String |
534 | hostCPU | String | 534 | hostCPU | String |
535 | date | String | kill? | 535 | date | String | kill? |
536 | version | String | 536 | version | String |
537 | pid | int | 537 | pid | int |
538 | assertsEnabled | bool | TODO: move to features? | 538 | assertsEnabled | bool | TODO: move to features? |
539 | typeChecksEnabled | bool | TODO: move to features? | 539 | typeChecksEnabled | bool | TODO: move to features? |
540 | uptime | double | seconds since vm started | 540 | uptime | double | seconds since vm started |
541 | "isolates" | List of [@Isolate](#Isolate) | 541 | "isolates" | List of [@Isolate](#Isolate) |
542 542
OLDNEW
« no previous file with comments | « runtime/vm/service/message.dart ('k') | runtime/vm/service/running_isolates.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698