folly::exception_wrapper MyRootAsyncClient::recv_wrapped_do_root(::apache::thrift::ClientReceiveState& state) { auto ew = state.exceptionWrapper(); if (ew) { return ew; } if (!state.buf()) { return folly::make_exception_wrapper<apache::thrift::TApplicationException>("recv_ called without result"); } switch(state.protocolId()) { case apache::thrift::protocol::T_BINARY_PROTOCOL: { apache::thrift::BinaryProtocolReader reader; return recv_wrapped_do_rootT(&reader, state); } case apache::thrift::protocol::T_COMPACT_PROTOCOL: { apache::thrift::CompactProtocolReader reader; return recv_wrapped_do_rootT(&reader, state); } default: { } } return folly::make_exception_wrapper<apache::thrift::TApplicationException>("Could not find Protocol"); }
folly::exception_wrapper service2AsyncClient::recv_wrapped_methodF( ::test_cpp2::cpp_reflection::struct2& _return, ::apache::thrift::ClientReceiveState& state) { auto ew = state.exceptionWrapper(); if (ew) { return ew; } if (!state.buf()) { return folly::make_exception_wrapper<apache::thrift::TApplicationException>("recv_ called without result"); } switch(state.protocolId()) { case apache::thrift::protocol::T_BINARY_PROTOCOL: { apache::thrift::BinaryProtocolReader reader; return recv_wrapped_methodFT(&reader, _return, state); } case apache::thrift::protocol::T_COMPACT_PROTOCOL: { apache::thrift::CompactProtocolReader reader; return recv_wrapped_methodFT(&reader, _return, state); } default: { } } return folly::make_exception_wrapper<apache::thrift::TApplicationException>("Could not find Protocol"); }