Skip to content

Instantly share code, notes, and snippets.

@bruce-ricard
Created January 18, 2017 02:34
Show Gist options
  • Save bruce-ricard/c9b5c64faf7225c625eb13444477edae to your computer and use it in GitHub Desktop.
Save bruce-ricard/c9b5c64faf7225c625eb13444477edae to your computer and use it in GitHub Desktop.
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