2
0
mirror of synced 2025-02-04 18:44:17 +00:00

20 lines
371 B
JavaScript
Raw Normal View History

2017-05-24 12:37:52 +01:00
export default class Trace {
constructor(perf: Object, identifier: string) {
this.perf = perf;
this.identifier = identifier;
}
start() {
this.perf._native.start(this.identifier);
2017-05-24 12:37:52 +01:00
}
stop() {
this.perf._native.stop(this.identifier);
2017-05-24 12:37:52 +01:00
}
incrementCounter(event: string) {
this.perf._native.incrementCounter(this.identifier, event);
2017-05-24 12:37:52 +01:00
}
}