Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-users] Query::getResultStream not correctly implemented?

Hello,

From a quick look in the sources, it looks to me that getResultStream isn't implemented by EclipseLink, relying instead to javax.persistence.TypedQuery::getResultStream default implementation:
default Stream getResultStream() {
return getResultList().stream();
}
Is there a plan to support it better, e.g. with a cursor / spliterator? Hibernate has been supporting it for some time now.

Thanks
---
Yannick Majoros

Back to the top