react-native-firebase/lib/modules/perf/Trace.js

20 lines
371 B
JavaScript
Raw Normal View History

2017-05-24 11:37:52 +00: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 11:37:52 +00:00
}
stop() {
this.perf._native.stop(this.identifier);
2017-05-24 11:37:52 +00:00
}
incrementCounter(event: string) {
this.perf._native.incrementCounter(this.identifier, event);
2017-05-24 11:37:52 +00:00
}
}