transaction

abstract fun transaction(ignoreTransitionLock: Boolean = false, transaction: IRouterTransactionScope.() -> Unit)

Allows performing several routing operations in a single transaction. routeFlow collectors will only be notified at the end of the transaction a single time.

Parameters

ignoreTransitionLock

If true the router will ignore any active transitions and perform the requested action. If false the router will ignore the request if there is an active transition. This prevents button spamming from opening several routes in a short time span.

transaction

The transaction to perform

router.transaction {
pop { whileTrue { true } }
push(Route.NewRoute1)
push(Route.NewRoute2)
}