-
public interface NotThreadSafeViewHierarchyUpdateDebugListener
A listener that is notified about view hierarchy update events. This listener should only be used for debug purposes and should not affect application state.
NB: while onViewHierarchyUpdateFinished will always be called from the UI thread, there are no guarantees what thread onViewHierarchyUpdateEnqueued is called on.
-
-
Method Summary
Modifier and Type Method Description abstract void
onViewHierarchyUpdateEnqueued()
Called when UIManagerModule enqueues a UI batch to be dispatched to the main thread. abstract void
onViewHierarchyUpdateFinished()
Called from the main thread after a UI batch has been applied to all root views. -
-
Method Detail
-
onViewHierarchyUpdateEnqueued
abstract void onViewHierarchyUpdateEnqueued()
Called when UIManagerModule enqueues a UI batch to be dispatched to the main thread.
-
onViewHierarchyUpdateFinished
abstract void onViewHierarchyUpdateFinished()
Called from the main thread after a UI batch has been applied to all root views.
-
-
-
-