Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

14 add dataprovider support #138

Closed
wants to merge 8 commits into from

Conversation

JohannesRabauer
Copy link
Contributor

No description provided.

@JohannesRabauer JohannesRabauer linked an issue Jan 26, 2023 that may be closed by this pull request
@sonarcloud
Copy link

sonarcloud bot commented Jan 31, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

0.0% 0.0% Coverage
0.0% 0.0% Duplication

@JohannesRabauer JohannesRabauer marked this pull request as ready for review January 31, 2023 08:34
Comment on lines +694 to +697
private List<T> extractItemsFromDataProvider(final DataProvider<T, ?> dataProvider)
{
return dataProvider.fetch(new Query<>()).collect(Collectors.toList());
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should do this like this. Here we're reading all the data from the Dataprovider.

A dataprovider can contain huge amounts of data and was likely designed with the thought that not all that data should be in memory at once.

Is there a different solution for handling the problem? Because this solution yields no improvements in my eyes.

@AB-xdev
Copy link
Member

AB-xdev commented Apr 10, 2024

Closed as PR is stale.
Can be redone once there is renewed interest.

@AB-xdev AB-xdev closed this Apr 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add DataProvider-Support
2 participants