Instance Method インスタンスメソッド

next()

The next value from the asynchronous stream.

Declaration 宣言

mutating func next() async throws -> Element?

Discussion 解説

When next() returns nil, this signifies the end of the AsyncThrowingStream.

It is a programmer error to invoke next() from a concurrent context that contends with another such call, which results in a call to fatalError().

If you cancel the task this iterator is running in while next() is awaiting a value, the AsyncThrowingStream terminates. In this case, next() may return nil immediately, or else return nil on subsequent calls.

Relationships 関係

From Protocol 由来プロトコル