I want to be able to delete an item while processing it if it fits a specific logic. For example, if the item doesn't contain a value I'm looking for, I don't want to that item to be written out to the file.
I'm currently using a class which implements ItemProcessor<T,T>
.
Do I just return null?