Beispiel #1
0
void RpcMethod::readFrom(const ObjectMap& methodObjMap)
{
	methodObjMap.getValue("version",this->version);
	methodObjMap.getValue("status",this->status);
	methodObjMap.getValue("authToken",this->authToken);
	methodObjMap.getValue("owner",this->owner);
	methodObjMap.getValue("method",this->methodName);
	methodObjMap.getValue("needReturn",this->waitResult);
	this->args = methodObjMap.get("args");
	this->returnValue = methodObjMap.get("returnValue");
}