Created
January 18, 2017 02:34
-
-
Save bruce-ricard/c9b5c64faf7225c625eb13444477edae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Optional<Stream<Long>> nextVersions = findAllVersionsAfter(lastFetchedVersion); | |
return nextVersions.map( | |
optionalVersion -> | |
optionalVersion.map( | |
version -> | |
new IdBucketDataStore<>( | |
bucketIdHandler.versionToBucketId(version), | |
getStoreForVersion(version) | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment