}
}
private void serializeDelta(DataOutputStream os, FastBlobTypeSerializationState<?> typeState, ThreadSafeBitSet currentStateOrdinals, ThreadSafeBitSet prevStateOrdinals) throws IOException {
/// get all of the ordinals contained in the previous cycle, which are no longer contained in this cycle. These all need to be removed.
ThreadSafeBitSet removedTypeStateObjectsBitSet = prevStateOrdinals.andNot(currentStateOrdinals);
serializeTypeStateRemovals(os, removedTypeStateObjectsBitSet);
/// get all of the ordinals contained in this cycle, which were not contained in the previous cycle. These all need to be added.
ThreadSafeBitSet addedTypeStateObjectsBitSet = currentStateOrdinals.andNot(prevStateOrdinals);
serializeTypeStateObjects(os, typeState, addedTypeStateObjectsBitSet);
}