-
public interface UIManagerListener
Listener used to hook into the UIManager update process.
-
-
Method Summary
Modifier and Type Method Description abstract void
willDispatchViewUpdates(UIManager uiManager)
Called right before view updates are dispatched at the end of a batch. abstract void
didDispatchMountItems(UIManager uiManager)
abstract void
didScheduleMountItems(UIManager uiManager)
-
-
Method Detail
-
willDispatchViewUpdates
abstract void willDispatchViewUpdates(UIManager uiManager)
Called right before view updates are dispatched at the end of a batch. This is useful if amodule needs to add UIBlocks to the queue before it is flushed.
-
didDispatchMountItems
abstract void didDispatchMountItems(UIManager uiManager)
-
didScheduleMountItems
abstract void didScheduleMountItems(UIManager uiManager)
-
-
-
-