Roiocam commented on code in PR #180: URL: https://github.com/apache/pekko-persistence-jdbc/pull/180#discussion_r1611371770
########## core/src/main/scala/org/apache/pekko/persistence/jdbc/journal/dao/BaseJournalDaoWithReadMessages.scala: ########## @@ -38,13 +38,28 @@ trait BaseJournalDaoWithReadMessages extends JournalDaoWithReadMessages { toSequenceNr: Long, batchSize: Int, refreshInterval: Option[(FiniteDuration, Scheduler)]): Source[Try[(PersistentRepr, Long)], NotUsed] = { + internalBatchStream(persistenceId, fromSequenceNr, toSequenceNr, batchSize, refreshInterval).mapConcat(identity) + } + /** + * separate this method for unit tests. + */ + @InternalApi + private[dao] def internalBatchStream(persistenceId: String, + fromSequenceNr: Long, + toSequenceNr: Long, + batchSize: Int, + refreshInterval: Option[(FiniteDuration, Scheduler)]) = { Review Comment: > should add some check for fromSequenceNr and batchSize what does that mean? batch size didn't allow `zero` value, and the `fromSequenceNr` was generate from acotr it self. > and add checking for where fromSequenceNr > toSequenceNr too `fromSequenceNr > toSequenceNr` is enforced down below. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org