# HG changeset patch # User Chris Cannam # Date 1486750158 0 # Node ID 4635c5c2c4fc7d0b90ca9d284dc22c649db3d6dd # Parent 01700726e02efe9e245746e2428baaa20ffcd203 Minor text tweaks diff -r 01700726e02e -r 4635c5c2c4fc capnp/piper.capnp --- a/capnp/piper.capnp Fri Feb 10 17:12:48 2017 +0000 +++ b/capnp/piper.capnp Fri Feb 10 18:09:18 2017 +0000 @@ -284,7 +284,7 @@ id :union { # Identifier used solely to associate a response packet with its # originating request. Server does not examine the contents of this, - # it just copies the request id into the response. + # it just copies the request id structure into the response. number @0 :Int32; tag @1 :Text; @@ -310,7 +310,7 @@ id :union { # Identifier used solely to associate a response packet with its # originating request. Server does not examine the contents of this, - # it just copies the request id into the response. + # it just copies the request id structure into the response. number @0 :Int32; tag @1 :Text; @@ -322,11 +322,11 @@ # response structures. error @3 :Error; # The request (of whatever type) failed. - list @4 :ListResponse; # List succeeded, here is static data about the requested extractors. - load @5 :LoadResponse; # Load succeeded, here is a handle for the loaded extractor. - configure @6 :ConfigurationResponse;# Configure succeeded, ready to process, here are values such as block size. - process @7 :ProcessResponse; # Process succeeded, here are all features calculated from this input block. - finish @8 :FinishResponse; # Finish succeeded, extractor unloaded, here are all remaining features. + list @4 :ListResponse; # List succeeded: here is static data about the requested extractors. + load @5 :LoadResponse; # Load succeeded: here is a handle for the loaded extractor. + configure @6 :ConfigurationResponse;# Configure succeeded: ready to process, here are values such as block size. + process @7 :ProcessResponse; # Process succeeded: here are all features calculated from this input block. + finish @8 :FinishResponse; # Finish succeeded: extractor unloaded, here are all remaining features. } }