芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/aws/aws-crt-php/src/AWS/CRT/IO/EventLoopGroup.php
0, ]; } function __construct(array $options = []) { parent::__construct(); $options = new Options($options, self::defaults()); $elg_options = self::$crt->event_loop_group_options_new(); self::$crt->event_loop_group_options_set_max_threads($elg_options, $options->getInt('max_threads')); $this->acquire(self::$crt->event_loop_group_new($elg_options)); self::$crt->event_loop_group_options_release($elg_options); } function __destruct() { self::$crt->event_loop_group_release($this->release()); parent::__destruct(); } }