Skip to content

Instantly share code, notes, and snippets.

@hnakamur
Created November 8, 2021 08:50
Show Gist options
  • Save hnakamur/34d9f28ba4294c5480bad564f6ebf0a1 to your computer and use it in GitHub Desktop.
Save hnakamur/34d9f28ba4294c5480bad564f6ebf0a1 to your computer and use it in GitHub Desktop.
Zig minimal generic callback example (slimmed version of TigerBeetle IO struct)
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);
}
@hnakamur
Copy link
Author

hnakamur commented Nov 8, 2021

$ zig test callback_example.zig 
All 1 tests passed.
$ zig version
0.8.1

The above example is based on TigerBeetle IO.send method

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment