You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
/**
* Get all customers.
*
* @return all the customers as a stream. The stream may be lazily or eagerly evaluated based on
* the implementation. The stream must be closed after use.
* @throws Exception if any error occurs.
*/
Stream<Customer> getAll() throws Exception;
...
A funny one.
App.java:
With CustomerDao:
Full source code:
https://github.com/iluwatar/java-design-patterns/tree/master/dao/src/main/java/com/iluwatar/dao
Note that source code is using Java 11 it that matters.
The text was updated successfully, but these errors were encountered: