comparison capnproto/vamp.capnp @ 70:302a8e35248c

Begin capnp RPC test
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 07 Oct 2016 12:07:17 +0100
parents a5ba837bca28
children
comparison
equal deleted inserted replaced
69:91fda9470ee2 70:302a8e35248c
159 159
160 struct FinishRequest { 160 struct FinishRequest {
161 handle @0 :Int32; 161 handle @0 :Int32;
162 } 162 }
163 163
164 struct FinishResponse {
165 handle @0 :Int32;
166 features @1 :FeatureSet;
167 }
168
164 struct Error { 169 struct Error {
165 code @0 :Int32; 170 code @0 :Int32;
166 message @1 :Text; 171 message @1 :Text;
167 } 172 }
168 173
169 struct RpcRequest { 174 struct RpcRequest {
175 # Request bundle for use when using Cap'n Proto serialisation without
176 # Cap'n Proto RPC layer.
170 request :union { 177 request :union {
171 list @0 :ListRequest; 178 list @0 :ListRequest;
172 load @1 :LoadRequest; 179 load @1 :LoadRequest;
173 configure @2 :ConfigurationRequest; 180 configure @2 :ConfigurationRequest;
174 process @3 :ProcessRequest; 181 process @3 :ProcessRequest;
175 finish @4 :FinishRequest; # getRemainingFeatures and unload 182 finish @4 :FinishRequest; # getRemainingFeatures and unload
176 } 183 }
177 } 184 }
178 185
179 struct RpcResponse { 186 struct RpcResponse {
187 # Response bundle for use when using Cap'n Proto serialisation without
188 # Cap'n Proto RPC layer.
180 response :union { 189 response :union {
181 error @0 :Error; 190 error @0 :Error;
182 list @1 :ListResponse; 191 list @1 :ListResponse;
183 load @2 :LoadResponse; 192 load @2 :LoadResponse;
184 configure @3 :ConfigurationResponse; 193 configure @3 :ConfigurationResponse;
185 process @4 :ProcessResponse; 194 process @4 :ProcessResponse;
186 finish @5 :ProcessResponse; 195 finish @5 :FinishResponse;
187 } 196 }
188 } 197 }
189 198