return base_input_stream and step_description
| 88 | |
| 89 | // return base_input_stream and step_description |
| 90 | std::pair<String, DataStream> ITransformingStep::deserializeFromProtoBase(const Protos::ITransformingStep & proto) |
| 91 | { |
| 92 | auto step_description = proto.step_description(); |
| 93 | DataStream input_stream; |
| 94 | input_stream.fillFromProto(proto.input_stream()); |
| 95 | return std::make_pair(std::move(step_description), std::move(input_stream)); |
| 96 | } |
| 97 | } |
nothing calls this directly
no test coverage detected