-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timer Enhancement #2498
Merged
Merged
Timer Enhancement #2498
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…just the order of struct members.
Request review: @windrunner414 @mabu233 @caohao-php |
windrunner414
suggested changes
Apr 11, 2019
windrunner414
approved these changes
Apr 12, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PHP层
Timer::clearAll()
, 由底层API暴露而来, 提供清除所有PHP定时器的能力Timer::list()
, 及相关类Timer\Iterator
, 提供迭代所有PHP定时器的能力Timer::info(int $timer_id)
, 提供获取定时器信息的能力Timer::stats()
, 提供获取全局定时器信息的能力底层
swHashMap_rewind
重置hashmap迭代器指针, 更规范 (底层目前所有迭代都是一轮完整的循环, 实际上暂无作用)SW_FUNCTION_ALIAS
, 支持动态注册函数别名, 旨在收敛模块相关代码到模块所属的c文件中(而不是在全局c文件和头文件)tnode.remove
属性改名为tnode. removed
, 和swConnection
的removed
一致php_swoole_timer
打头(总是以模块名打头, 而不是先方法+模块名)其它