getFibers()

/**
 * @return array<int, Fiber>
 *
 * This method is used to get the fibers of the green threads.
 */
public static function getFibers(): array;

This is the static method used to get all fibers of all running threads.

Last updated