移除Core,新增各接口用于sdk扩展

This commit is contained in:
yhh
2020-12-30 16:28:07 +08:00
parent f934890fac
commit d84ffcc2b7
28 changed files with 2008 additions and 653 deletions

View File

@@ -135,6 +135,15 @@ module es {
return true;
}
if (typeof chain.value == 'string') {
if (chain.value == 'break') {
Pool.free(coroutine);
return false;
}
return true;
}
if (chain.value instanceof CoroutineImpl) {
coroutine.waitForCoroutine = chain.value;
return true;