add some markers to breakdown ReactInstanceManager.processPackages

Reviewed By: alexeylang

Differential Revision: D4469884

fbshipit-source-id: 891a37aaf2fc472b2614e551c3564075a1a43484
This commit is contained in:
Aaron Chiu
2017-01-26 18:09:10 -08:00
committed by Facebook Github Bot
parent a83af44a59
commit 0bfb426877
4 changed files with 46 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
// Copyright 2004-present Facebook. All Rights Reserved.
package com.facebook.react;
/**
* Interface for the bridge to call for TTI start and end markers.
*/
public interface ReactPackageLogger {
void startProcessPackage();
void endProcessPackage();
}