I am using stream listener to consume the messages from amazon kinesis stream.
@StreamListener(Processor.Input)
public void receiveMessage(String message) {
//process
}
- Is it possible to implement a listener which will get all the messages once from Input stream every 10 minutes
- When there are consumer groups how will it behave. Does all containers in Consumer group get different messages list.
I tried with @Poller
but it does not have any inputchannel.
Any help on this would be great.