* Returns a pair of insert and remove stream event arrays considering the all invocations, and resets the listener.
* @return pair of event arrays, the first in the pair is the insert stream data, the second in the pair is the remove stream data
*/
public synchronized UniformPair<EventBean[]> getAndResetDataListsFlattened()
{
UniformPair pair = getDataListsFlattened();
reset();
return pair;
}