We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to Esper IO documentation (http://www.espertech.com/esper/release-5.2.0/esperio-reference/html/adapter_file.html#csv-step-1) the CSVInputAdapter can only handle POJO events.
It would be nice to be able to use Immutable Objects (with final fields, Constructior and getter only).
Example:
private final BigDecimal open; private final BigDecimal high; private final BigDecimal low; private final BigDecimal close; public BarVO(BigDecimal open, BigDecimal high, BigDecimal low, BigDecimal close) { this.open = open; this.high = high; this.low = low; this.close = close; }
The text was updated successfully, but these errors were encountered:
The link is broken.
Sorry, something went wrong.
No branches or pull requests
According to Esper IO documentation (http://www.espertech.com/esper/release-5.2.0/esperio-reference/html/adapter_file.html#csv-step-1) the CSVInputAdapter can only handle POJO events.
It would be nice to be able to use Immutable Objects (with final fields, Constructior and getter only).
Example:
The text was updated successfully, but these errors were encountered: