improvements for async-io

This commit is contained in:
Chris Boesch
2026-04-06 12:22:41 +02:00
parent 5e474ea5d1
commit 446da3ce5a
2 changed files with 5 additions and 5 deletions

View File

@@ -14,7 +14,7 @@
// * Once you call group.async(), you MUST eventually call
// group.await() or group.cancel() to release resources.
// * group.cancel() requests cancellation on ALL members,
// then waits for them to finish.
// then blocks until they all finish.
//
// Unlike Future, Group tasks don't return values to the caller.
// They're ideal for parallel work that communicates through
@@ -38,7 +38,7 @@ pub fn main(init: std.process.Init) !void {
// Wait for all tasks to finish.
// What Group method blocks until all tasks complete?
try group.???
try group.???(io);
print("All tasks finished!\n", .{});
}