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 _map34 = iprot.readMapBegin();
this.parameterMap = new Map<Int8List, t_nebula.Value>();
for (int _i35 = 0; _i35 < _map34.length; ++_i35) {
Int8List _key36;
t_nebula.Value _val37;
_key36 = iprot.readBinary();
_val37 = new t_nebula.Value();
_val37.read(iprot);
this.parameterMap?[_key36] = _val37;
}
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();
}