Pipelining almost completely wrapped

Waiting on some upstream changes in C++ libcapnp before I can finish
This commit is contained in:
Jason Paryani
2013-10-17 22:42:14 -07:00
parent 7f7b28f328
commit 96bfc495d8
8 changed files with 194 additions and 100 deletions

View File

@@ -35,11 +35,11 @@ interface TestInterface {
# grault @2 () -> TestAllTypes;
# }
# interface TestPipeline {
# getCap @0 (n: UInt32, inCap :TestInterface) -> (s: Text, outBox :Box);
# testPointers @1 (cap :TestInterface, obj :Object, list :List(TestInterface)) -> ();
interface TestPipeline {
getCap @0 (n: UInt32, inCap :TestInterface) -> (s: Text, outBox :Box);
testPointers @1 (cap :TestInterface, obj :Object, list :List(TestInterface)) -> ();
# struct Box {
# cap @0 :TestInterface;
# }
# }
struct Box {
cap @0 :TestInterface;
}
}