-
public interface FpsListener
-
-
Method Summary
Modifier and Type Method Description abstract void
enable(String tag)
Clients should call this method when they want the listener to begin recording data. abstract void
disable(String tag)
Clients should call this method when they want the listener to stop recording data. abstract boolean
isEnabled()
Reports whether this listener is recording data. -
-
Method Detail
-
enable
abstract void enable(String tag)
Clients should call this method when they want the listener to begin recording data.
-
disable
abstract void disable(String tag)
Clients should call this method when they want the listener to stop recording data. Thelistener will then report the data it collected.
Calling disable on a listener that has already been disabled is a no-op.
-
isEnabled
abstract boolean isEnabled()
Reports whether this listener is recording data.
-
-
-
-