--- title: Synchronous Concurrency layout: docs permalink: /docs/synchronous-concurrency.html prevPage: subtree-rasterization.html nextPage: corner-rounding.html --- Both `ASViewController` and `ASCellNode` have a property called `neverShowPlaceholders`. By setting this property to YES, the main thread will be blocked until display has completed for the cell or view controller's view. Using this option does not eliminate all of the performance advantages of Texture. Normally, a given node has been preloading and is almost done when it reaches the screen, so the blocking time is very short. Even if the rangeTuningParameters are set to 0 this option outperforms UIKit. While the main thread is waiting, all subnode display executes concurrently, thus synchronous concurrency. See the NSSpain 2015 talk video for a visual walkthrough of this behavior.
node.neverShowPlaceholders = YES;