- Loading...
The following blocking operations are fiber friendly in the current prototype; these methods do not pin the carrier thread when the operation blocks.
...
socket adaptor receive also okay
write and send do not block
...
The following blocking operations are not currently fiber friendly; these methods pin the carrier thread when the operation blocks.
...
getByName, getAllByName, ..
...
These methods block in NSS/equivalent and are invoked using a ManagedBlocker to allow the number of carrier threads to increase when fibers are blocked in these lookup mechanism. Alternative options being explored are using a separate thread pool for lookups or dusting off the JNDI DNS provider.
...