문제

As we know Microsoft TPL Dataflow supports platforms:

  • .NET Framework 4.5
  • .NET for Windows Store apps
  • Portable Class Libraries

but there is NO Windows Phone 8 support.

What are the alternatives to replace BufferBlock<>, etc.?

도움이 되었습니까?

해결책

Supporting TPL Dataflow on Windows Phone is on our backlog. The reason it's not supported is because one of its dependencies hasn't been implemented for Windows Phone yet (namely concurrent collections). However, we believe we could either remove this dependency or port concurrent collections as well.

I've filed a user voice item for it. Please share & vote -- it helps us to prioritize this work.

Update

I’m happy to announce that we've released a preview that includes support for Windows Phone 8.

다른 팁

One alternative is the Reactive Framework. It actually is very similar to Dataflow. In fact it's so similar, that Dataflow includes AsObservable() and AsObserver() extension methods on its blocks that allow it to interoperate with Reactive Framework. And it's a NuGet package available on Windows Phone.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top