I know what is the purpose and how to handle Stream as a query output, i.e.:
Stream<Person> findAll();
However, recently I stumbled upon org.springframework.data.util.Streamable<T>, used in the same way as a Stream:
Streamable<Person> findByNameContaining(String name, Sort sort);
What is the use case of Streamable?