SSTableAddedNotification flushedNotification = (SSTableAddedNotification) notification;
manifest.add(flushedNotification.added);
}
else if (notification instanceof SSTableListChangedNotification)
{
SSTableListChangedNotification listChangedNotification = (SSTableListChangedNotification) notification;
manifest.replace(listChangedNotification.removed, listChangedNotification.added);
}
else if (notification instanceof SSTableRepairStatusChanged)
{
manifest.repairStatusChanged(((SSTableRepairStatusChanged) notification).sstable);