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

28 lines
552 B
JavaScript
Raw Normal View History

/**
* @flow
* Trace representation wrapper
*/
import type PerformanceMonitoring from './';
2017-05-24 11:37:52 +00:00
export default class Trace {
identifier: string;
perf: PerformanceMonitoring;
2017-05-24 11:37:52 +00:00
constructor(perf: PerformanceMonitoring, identifier: string) {
2017-05-24 11:37:52 +00:00
this.perf = perf;
this.identifier = identifier;
}
start(): void {
this.perf._native.start(this.identifier);
2017-05-24 11:37:52 +00:00
}
stop(): void {
this.perf._native.stop(this.identifier);
2017-05-24 11:37:52 +00:00
}
incrementCounter(event: string): void {
this.perf._native.incrementCounter(this.identifier, event);
2017-05-24 11:37:52 +00:00
}
}