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 SPACE:
if (field.type == TType.STRUCT) {
this.space = new SpaceDesc();
this.space?.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case HOST_BACKUPS:
if (field.type == TType.LIST) {
{
TList _list270 = iprot.readListBegin();
this.host_backups = <HostBackupInfo>[];
for (int _i271 = 0; _i271 < _list270.length; ++_i271) {
HostBackupInfo _elem272;
_elem272 = new HostBackupInfo();
_elem272.read(iprot);
this.host_backups?.add(_elem272);
}
iprot.readListEnd();
}
} 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();
}