diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-07-10 15:17:01 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-07-10 15:17:01 -0400 |
| commit | 8fba0a6ae862993afa2aeca774347adc399b3605 (patch) | |
| tree | 1f0edaca796666c73ab578b2bb3d1c1d4bc5f264 /std/event.zig | |
| parent | 0ce6934e2631eb3beca817d3bce12ecb13aafa13 (diff) | |
| download | zig-8fba0a6ae862993afa2aeca774347adc399b3605.tar.gz zig-8fba0a6ae862993afa2aeca774347adc399b3605.zip | |
introduce std.event.Group for making parallel async calls
Diffstat (limited to 'std/event.zig')
| -rw-r--r-- | std/event.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/std/event.zig b/std/event.zig index 7e9928b3d7..516defebf8 100644 --- a/std/event.zig +++ b/std/event.zig @@ -3,6 +3,7 @@ pub const Loop = @import("event/loop.zig").Loop; pub const Lock = @import("event/lock.zig").Lock; pub const tcp = @import("event/tcp.zig"); pub const Channel = @import("event/channel.zig").Channel; +pub const Group = @import("event/group.zig").Group; test "import event tests" { _ = @import("event/locked.zig"); @@ -10,4 +11,5 @@ test "import event tests" { _ = @import("event/lock.zig"); _ = @import("event/tcp.zig"); _ = @import("event/channel.zig"); + _ = @import("event/group.zig"); } |
