Why event.getSource().getDocIds() is null in following code? I can't find out which docs added and pulled from CB!
pullReplication.addChangeListener(new Replication.ChangeListener() {
@Override
public void changed(Replication.ChangeEvent event) {
event.getSource().getDocIds() IS NULL HERE
int c=event.getChangeCount();
c=c+1;
}
});