mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-06 09:31:11 +08:00
Reviewed By: alexeylang Differential Revision: D4469884 fbshipit-source-id: 891a37aaf2fc472b2614e551c3564075a1a43484
13 lines
261 B
Java
13 lines
261 B
Java
// 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();
|
|
}
|