摘要: Language Integrated Query (LINQ, pronounced "link") is a Microsoft .NET Framework component that adds native data querying capabilities to .NET langua 阅读全文
posted @ 2018-05-07 20:17 zzfx 阅读(329) 评论(0) 推荐(0) 编辑
摘要: LINQ http://www.cnblogs.com/lifepoem/archive/2011/12/16/2288017.html LINQ是.NET Framework 3.5的新特性,其全称是 Language Integrated Query,即语言集成查询,是指将查询功能和语言结合起来 阅读全文
posted @ 2018-05-07 20:12 zzfx 阅读(255) 评论(0) 推荐(0) 编辑
摘要: Reactive Extensions (Rx) 原来是由微软提出的一个综合了异步和基于事件驱动编程的库包,使用可观察序列和LINQ-style查询操作。 使用Rx, 开发者可以用Observables来表达异步数据流,使用LinQ操作查询异步数据流,使用Schedulers参数化异步数据流中并发。 阅读全文
posted @ 2018-05-07 20:08 zzfx 阅读(1057) 评论(0) 推荐(0) 编辑
摘要: This documentation groups information about the various operators and examples of their usage into the following pages: These pages include informatio 阅读全文
posted @ 2018-05-07 20:02 zzfx 阅读(140) 评论(0) 推荐(0) 编辑
摘要: http://reactivex.io The real power comes with the “reactive extensions” (hence “ReactiveX”) — operators that allow you to transform, combine, manipula 阅读全文
posted @ 2018-05-07 19:55 zzfx 阅读(166) 评论(0) 推荐(0) 编辑
摘要: RxSwift 或许我们都听说过,但或许只知道 RxSwift 这个单词,长篇大论关于 RxSwift 的介绍往往使读者迷失在各种概念当中,却不知如何让它大展伸手。或许我们可以换一种姿势,一些应用场景会让我们产生共鸣,解决问题的方式由很多,为什么不找一种最优的呢?RxSwift也许会帮到你。 什么是 阅读全文
posted @ 2018-05-07 19:53 zzfx 阅读(704) 评论(0) 推荐(0) 编辑
摘要: The features of Swift are designed to work together to create a language that is powerful, yet fun to use. Some additional features of Swift include: 阅读全文
posted @ 2018-05-07 19:48 zzfx 阅读(141) 评论(0) 推荐(0) 编辑
摘要: http://reactivex.io The Observer pattern done right ReactiveX is a combination of the best ideas from the Observer pattern, the Iterator pattern, and 阅读全文
posted @ 2018-05-07 19:44 zzfx 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 封装、变换与处理 // Represents a push style sequence. public protocol ObservableType : ObservableConvertibleType { func subscribe<O: ObserverType>(_ observer: 阅读全文
posted @ 2018-05-07 19:42 zzfx 阅读(249) 评论(0) 推荐(0) 编辑