Skip to content

Qt Javascript Event bridge messages

Hemant Kumar edited this page Jul 31, 2014 · 2 revisions

Events sent from Qt to Javascript:

For GC stats

{
event_type: gc_stats,
timestamp: <time_in_milliseconds>,
payload: {
  ...
  ...
  }
}

For GC start

{
event_type: gc_start
timestamp: <time_in_milliseconds>
}

for GC end

{
event_type: gc_end
timestamp: <time_in_milliseconds>
}

Gross object stats

{
event_type: object_stat,
timestamp: <time_in_milliseconds>,
payload: {
  "String": 1000,
   "Foo": 40
  }
}
Clone this wiki locally