-
public interface FrescoSystrace.ArgsBuilderObject that accumulates arguments.
-
-
Method Summary
Modifier and Type Method Description abstract Unitflush()Write the full message to the Systrace buffer. abstract FrescoSystrace.ArgsBuilderarg(String key, Object value)Logs an argument whose value is any object. abstract FrescoSystrace.ArgsBuilderarg(String key, Integer value)Logs an argument whose value is an int. abstract FrescoSystrace.ArgsBuilderarg(String key, Long value)Logs an argument whose value is a long. abstract FrescoSystrace.ArgsBuilderarg(String key, Double value)Logs an argument whose value is a double. -
-
Method Detail
-
flush
abstract Unit flush()
Write the full message to the Systrace buffer.
You must call this to log the trace message.
-
arg
abstract FrescoSystrace.ArgsBuilder arg(String key, Object value)
Logs an argument whose value is any object. It will be stringified with String.valueOf.
-
arg
abstract FrescoSystrace.ArgsBuilder arg(String key, Integer value)
Logs an argument whose value is an int. It will be stringified with String.valueOf.
-
arg
abstract FrescoSystrace.ArgsBuilder arg(String key, Long value)
Logs an argument whose value is a long. It will be stringified with String.valueOf.
-
arg
abstract FrescoSystrace.ArgsBuilder arg(String key, Double value)
Logs an argument whose value is a double. It will be stringified with String.valueOf.
-
-
-
-