Toggle navigation
Home
com.mongodb.DBCursor to com.mongodb.client.FindIterable<org.bson.Document>
No. of Instances - 9
No. of Commits - 1
No. of Projects - {'AxonFramework'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: External -> External
Mapping:
Rename Method invocation
limit
to
batchSize
limit
to
batchSize
Add or Remove Method invocation
sagaCursor.size()
to
StreamSupport.stream(sagaCursor.spliterator(),false).count()
eventCollection.find(BasicDBObjectBuilder.start().get())
to
eventCollection.find()
BasicDBObjectBuilder
to
and(gte(eventConfiguration.timestampProperty(),legacyTrackingToken.getTimestamp().toString()),gte(eventConfiguration.sequenceNumberProperty(),legacyTrackingToken.getSequenceNumber()))
sagaCursor.size()
to
StreamSupport.stream(sagaCursor.spliterator(),false).count()