newStylerFiber

fun newStylerFiber(loader: AvailLoader, nameSupplier: () -> A_String): A_Fiber

Construct an unstartedfiber with the specified AvailLoader, for the purpose of styling tokens and phrases. Such a fiber is the only place that styling is allowed. Fibers launched from this fiber also allow styling, but they should be joined by this fiber to ensure they are not making changes after styling is supposed to have completed. The priority is initially set to loaderPriority.

Return

The new fiber.

Parameters

loader
nameSupplier

A supplier that produces an Avail string to name this fiber on demand. Please don't run Avail code to do so, since if this is evaluated during fiber execution it will cause the current Thread's execution to block, potentially starving the execution pool.