(Runnable r)
| 383 | /// |
| 384 | /// - `r`: runnable (NOT A THREAD!) that will be invoked synchroniously by this method |
| 385 | public static void invokeAndBlock(Runnable r) { |
| 386 | Display.INSTANCE.invokeAndBlock(r); |
| 387 | } |
| 388 | |
| 389 | /// Invokes a Runnable with blocking disabled. If any attempt is made to block |
| 390 | /// (i.e. call `#invokeAndBlock(java.lang.Runnable)` from inside this Runnable, |
no outgoing calls