Created
November 8, 2021 08:50
-
-
Save hnakamur/34d9f28ba4294c5480bad564f6ebf0a1 to your computer and use it in GitHub Desktop.
Zig minimal generic callback example (slimmed version of TigerBeetle IO struct)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub const Transport = struct { | |
pub fn send( | |
self: *Transport, | |
comptime Context: type, | |
context: Context, | |
comptime callback: fn ( | |
context: Context, | |
reuslt: usize, | |
) void, | |
) void { | |
callback(context, 1); | |
} | |
}; | |
const std = @import("std"); | |
const testing = std.testing; | |
test "Transport" { | |
const Context = struct { | |
t: Transport, | |
result: usize = undefined, | |
const Self = @This(); | |
fn onSend(self: *Self, result: usize) void { | |
self.result = result; | |
} | |
fn run(self: *Self) void { | |
self.t.send(*Self, self, onSend); | |
} | |
}; | |
var ctx = Context{ .t = Transport{} }; | |
ctx.run(); | |
try testing.expectEqual(@as(usize, 1), ctx.result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The above example is based on TigerBeetle IO.send method