read method
Reads the TObject from the given input protocol.
Implementation
read(TProtocol iprot) {
TField field;
iprot.readStructBegin();
while (true) {
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case SESSIONID:
if (field.type == TType.I64) {
this.sessionId = iprot.readI64();
this.__isset_sessionId = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case STMT:
if (field.type == TType.STRING) {
this.stmt = iprot.readBinary();
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case PARAMETERMAP:
if (field.type == TType.MAP) {
{
TMap _map28 = iprot.readMapBegin();
this.parameterMap = new Map<Int8List, t_nebula.Value>();
for (int _i29 = 0; _i29 < _map28.length; ++_i29) {
Int8List _key30;
t_nebula.Value _val31;
_key30 = iprot.readBinary();
_val31 = new t_nebula.Value();
_val31.read(iprot);
this.parameterMap?[_key30] = _val31;
}
iprot.readMapEnd();
}
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
break;
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}