Closed kochounoyume closed 3 months ago
Because the default cancelOnCompleted of SubscribeAwait has been changed, I think it is now possible to output all elements.
Showing sample is sequential, each element is output one at a time, and it is delayed by one frame with UniTask.Yield, so it does not become one frame. If you want to make all elements one frame, there are also means such as ToArray to solidify or ChunkFrame to control.
As a goal, I want to do what the title says.
For example, the following source code does not work well in practice (because Complete is issued inside
ToObservable()
), but it may convey the image.Any good ideas?