-
Notifications
You must be signed in to change notification settings - Fork 9
refactoring public api #2
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
Conversation
|
Thank you for your contribution. From the very quick look of it:
|
|
Before doing a pull request, I advise you to create an issue to describe the problem and the proposed solution. Then when the solution is approved, then you can start doing the code. I have read thoroughly your contribution, here are the points I want to discuss before merging your request: Exporter One part of your request is to enforce column name unicity. What is the motivation behind that? This change reduces the usability of the library, now it is not possible anymore to have columns that shared the same name. What is the reason for the renaming of the Importer Tests
Code style
Documentation This part should be done at the very end.
|
Recently I was trying to implement a csv exporting with the reactive spring boot 2.
Something like that:
I've noticed that all exporters contain an entire state (rows) before performing logic.
So it was the primary reason why I decided to rewrite exporters and large half of public api:
I'm open for your remarks and comments ;)