Reactive Extensions for C++简介

Reactive Extensions for C++(也叫Rx.cpp),已经可以在WinRT(C++/CX)和OS X(clang)中使用了。 尽管还很年轻,但很多工作已经在上一个预览版中完成了。

Scheduling is a cornerstone of Reactive Extensions. 调度是Reactive Extensions中的*** 该版本中共有5个调度器,其中还包括一个专门为Windows的HWND消息环而设计的调度器。

  • Immediate
  • CurrentThread
  • EventLoop
  • NewThread
  • Window

对于Rx开发者来说,对“与STL算法等价的异步”操作符应该非常熟悉:OrderBy、ForEach、Using、Scan、Throttle、TakeUntil、Skip、SkipUntil、ToVector、ToList、Zip、Concat、CombineLatest、Merge、ToAsync、Using、ConnectableObservable、Multicast、Publish、PublishLast、RefCount、ConnectForever、SubscribeOn、ObserveOn。

WinRT的C++/CX所特有的特性包括:BindCommand、DeferOperation、CoreDispatcherScheduler、FromEventPattern、FromAsyncPattern和ReactiveCommand。最后一个特性来自Paul Betts的ReactiveUI。

面是一个示例,通过一个范围创建一个可观察对象(observable):

//Declare an observable 
auto values1 = rxcpp::Range(1, 10); 
rxcpp::from(values1)    
    .for_each(      
        [](int p) {         
        cout << p << endl;  
});

Rx.cpp的源代码位于CodePlex,支持Apache License 2.0许可。

原文链接:Introducing Reactive Extensions for C++

你可能感兴趣的:(Reactive Extensions for C++简介)