Skip to content

Commit cc22152

Browse files
authored
runBlocking -> runNonBlocking
1 parent a064cce commit cc22152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vennv/vapm/CoroutineGen.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static function getTaskQueue(): ?SplQueue;
4646
*
4747
* This is a blocking function that runs all the coroutines passed to it.
4848
*/
49-
public static function runBlocking(mixed ...$coroutines): void;
49+
public static function runNonBlocking(mixed ...$coroutines): void;
5050

5151
/**
5252
* @param callable $callback
@@ -89,7 +89,7 @@ public static function getTaskQueue(): ?SplQueue
8989
* @return void
9090
* @throws Throwable
9191
*/
92-
public static function runBlocking(mixed ...$coroutines): void
92+
public static function runNonBlocking(mixed ...$coroutines): void
9393
{
9494
System::init();
9595
if (self::$taskQueue === null) self::$taskQueue = new SplQueue();

0 commit comments

Comments
 (0)