6 #ifndef __KILL_PROC_H__ 7 #define __KILL_PROC_H__ 26 options(std::map<std::string, std::string>())
41 KillProcRequest(
const std::string& runId_,
const std::map<std::string, std::string>& options_):
48 std::map<std::string, std::string>
options;
58 ::avro::encode(e, v.
runId);
64 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
66 const std::vector<size_t> fo = rd->fieldOrder();
68 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
73 ::avro::decode(d, v.
runId);
87 ::avro::decode(d, v.
runId);
110 runIds(std::vector<std::string>())
124 ::avro::encode(e, v.
runIds);
129 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
131 const std::vector<size_t> fo = rd->fieldOrder();
133 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
138 ::avro::decode(d, v.
runIds);
148 ::avro::decode(d, v.
runIds);
KillProcResponse()
Constructs a KillProcResponse object with default parameter values.
KillProcRequest()
Constructs a KillProcRequest object with default parameter values.
A set of input parameters for killProc(const KillProcRequest&) const.
std::map< std::string, std::string > options
std::vector< std::string > runIds
A set of output parameters for killProc(const KillProcRequest&) const.
KillProcRequest(const std::string &runId_, const std::map< std::string, std::string > &options_)
Constructs a KillProcRequest object with the specified parameters.