UIManagerListener

Listener used to hook into the UIManager update process.

Inheritors

Functions

Link copied to clipboard
abstract fun didDispatchMountItems(uiManager: UIManager)

Called on UIThread right after view updates are dispatched for a frame. Note that this will be called for every frame even if there are no updates.

Link copied to clipboard
abstract fun didMountItems(uiManager: UIManager)

Called on UIThread right after view updates are executed.

Link copied to clipboard
abstract fun didScheduleMountItems(uiManager: UIManager)

Called right after scheduleMountItems is called in Fabric, after a new tree is committed.

Link copied to clipboard
abstract fun willDispatchViewUpdates(uiManager: UIManager)

Called right before view updates are dispatched at the end of a batch. This is useful if a module needs to add UIBlocks to the queue before it is flushed.

Link copied to clipboard
abstract fun willMountItems(uiManager: UIManager)

Called on UIThread right before view updates are executed.