190191192193194195196197198199200
record.serialize(out); } int expectedEndIx = offset+dataSize; // padding while (out.getWriteIndex() < expectedEndIx) { out.writeByte(0); } } else { out.write(_uninterpretedData); } return recSize;
184185186187188189190191192193194
185186187188189190191192193194195
155156157158159160161162163164165