streamAll

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

Find all entities of this type. This method is a shortcut for findAll().stream(). It requires a transaction to work. Without a transaction, the underlying cursor can be closed before the end of the stream.

Return

a Stream containing all results, without paging

See also


@CheckReturnValue
@GenerateBridge
open fun streamAll(): Multi<Entity>

Find all entities of this type, in the given order. This method is a shortcut for findAll().stream(). It requires a transaction to work. Without a transaction, the underlying cursor can be closed before the end of the stream.

Return

a Stream containing all results, without paging

See also