| com.facebook.imagepipeline.systrace.FrescoSystrace.ArgsBuilder |
Object that accumulates arguments.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract FrescoSystrace.ArgsBuilder |
arg(String key, int value)
Logs an argument whose value is an int.
| ||||||||||
| abstract FrescoSystrace.ArgsBuilder |
arg(String key, Object value)
Logs an argument whose value is any object.
| ||||||||||
| abstract FrescoSystrace.ArgsBuilder |
arg(String key, double value)
Logs an argument whose value is a double.
| ||||||||||
| abstract FrescoSystrace.ArgsBuilder |
arg(String key, long value)
Logs an argument whose value is a long.
| ||||||||||
| abstract void |
flush()
Write the full message to the Systrace buffer.
| ||||||||||
Logs an argument whose value is an int. It will be stringified with valueOf(int).
Logs an argument whose value is any object. It will be stringified with valueOf(Object).
Logs an argument whose value is a double. It will be stringified with valueOf(double).
Logs an argument whose value is a long. It will be stringified with valueOf(long).
Write the full message to the Systrace buffer.
You must call this to log the trace message.