Basic Coder
Basic Coder

Reputation: 11412

How do I merge Streams in Futures 0.2?

As stated in the documentation for Futures 0.1, Stream provided a merge method to merge two Streams. What is the equivalent in Futures 0.2?

I do not want to zip the Streams.

Upvotes: 0

Views: 434

Answers (1)

Shepmaster
Shepmaster

Reputation: 430358

If you review the most recent documentation for Stream in 0.1.21, you will see this note:

Deprecated: functionality provided by select now

select is a method of the StreamExt trait.

Upvotes: 3

Related Questions