onCreated property

EventStream<Process> get onCreated

Fired each time a process is created, providing the corrseponding Process object. |process|: Details of the process that was created. Metrics requiring aggregation over time will not be populated in the object.

Implementation

EventStream<Process> get onCreated =>
    $js.chrome.processes.onCreated.asStream(($c) => ($js.Process process) {
          return $c(Process.fromJS(process));
        }.toJS);