/home/techb158/ileadtechnology.com/vendor/aws/aws-crt-php/src/AWS/CRT/IO
Edit: /home/techb158/ileadtechnology.com/vendor/aws/aws-crt-php/src/AWS/CRT/IO/EventLoopGroup.php (1255B)
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();
}
}