ef
ef copied to clipboard
为什么在 fiber 中有 yield 函数, 在 coroutine 中没有呢
fiber是最底层抽象,实现用户态的“纤程”,提供切换api。coroutine在fiber之上,主要是基于io事件驱动,暂不支持用户代码主动调度。