123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace Swoole;
- class Timer
- {
- /**
- * @return mixed
- */
- public static function set(array $settings)
- {
- }
- /**
- * @return mixed
- */
- public static function tick($ms, callable $callback, ... $params)
- {
- }
- /**
- * @return mixed
- */
- public static function after($ms, callable $callback, ... $params)
- {
- }
- /**
- * @return mixed
- */
- public static function exists($timer_id)
- {
- }
- /**
- * @return mixed
- */
- public static function info($timer_id)
- {
- }
- /**
- * @return mixed
- */
- public static function stats()
- {
- }
- /**
- * @return mixed
- */
- public static function list()
- {
- }
- /**
- * @return mixed
- */
- public static function clear($timer_id)
- {
- }
- /**
- * @return mixed
- */
- public static function clearAll()
- {
- }
- }
|