streamAll

@GenerateBridge
open fun streamAll(sort: Sort): Stream<Entity>

Find all entities of this type. This method is a shortcut for findAll().stream().

Return

a Stream containing all results, without paging

See also


@GenerateBridge
open fun streamAll(): Stream<Entity>

Find all entities of this type, in the given order. This method is a shortcut for findAll(sort).stream().

Return

a Stream containing all results, without paging

See also