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:
parent
b6f662d6b6
commit
b0e39d26ae
|
@ -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){
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue