Hello,
How do I get the next event or the next N events after advanceTo?
My example:
String iCal = "RRULE:FREQ=YEARLY;COUNT=1"
LocalDateIterator iterator = LocalDateIteratorFactory.createLocalDateIterator(iCal, new LocalDate(2014, 1, 1), true);
iterator.advanceTo(LocalDate.now());
This doesn't work because the the count 1 gets consumed before the advanceTo date. Is there a way to get the N events after advanceTo?
Thanks