implemented tracing async flow events (s, t and f)

Reviewed By: jkeljo

Differential Revision: D2699625

fb-gh-sync-id: 1d1b41fac157650e98a49307b701b6da63589c4b
This commit is contained in:
Daniel Hugenroth 2015-12-01 09:10:46 -08:00 committed by facebook-github-bot-7
parent b6f662d6b6
commit b0e39d26ae
1 changed files with 18 additions and 0 deletions

View File

@ -83,4 +83,22 @@ public class Systrace {
final String counterName,
final int counterValue) {
}
public static void startAsyncFlow(
long tag,
final String sectionName,
final int cookie){
}
public static void stepAsyncFlow(
long tag,
final String sectionName,
final int cookie){
}
public static void endAsyncFlow(
long tag,
final String sectionName,
final int cookie){
}
}