comparison vamp-capnp/VampnProto.h @ 170:590b1a1fd955

More work on error and exception handling
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 31 Jan 2017 14:53:24 +0000
parents 0876b5e67afe
children 3eb00e5c76c4
comparison
equal deleted inserted replaced
169:f13dc1db2229 170:590b1a1fd955
910 910
911 static RRType 911 static RRType
912 getRequestResponseType(const piper::RpcResponse::Reader &r) { 912 getRequestResponseType(const piper::RpcResponse::Reader &r) {
913 switch (r.getResponse().which()) { 913 switch (r.getResponse().which()) {
914 case piper::RpcResponse::Response::Which::ERROR: 914 case piper::RpcResponse::Response::Which::ERROR:
915 return RRType::NotValid; //!!! or error type? test this 915 return RRType::NotValid;
916 case piper::RpcResponse::Response::Which::LIST: 916 case piper::RpcResponse::Response::Which::LIST:
917 return RRType::List; 917 return RRType::List;
918 case piper::RpcResponse::Response::Which::LOAD: 918 case piper::RpcResponse::Response::Which::LOAD:
919 return RRType::Load; 919 return RRType::Load;
920 case piper::RpcResponse::Response::Which::CONFIGURE: 920 case piper::RpcResponse::Response::Which::CONFIGURE: