码迷,mamicode.com
首页 >  
搜索关键字:observable    ( 380个结果
[RxJS] Creation operator: create()
We have been using Observable.create() a lot in previous lessons, so let's take a closer look how does it work. The create function: In deep, create() ...
分类:Web程序   时间:2016-04-17 17:45:42    阅读次数:152
[RxJS] Creation operators: interval and timer
It is quite common to need an Observable that ticks periodically, for instance every second or every 100 miliseconds. We will learn about operators in ...
分类:Web程序   时间:2016-04-17 17:37:31    阅读次数:161
[RxJS] Creation operators: from, fromArray, fromPromise
The of() operator essentially converted a list of arguments to an Observable. Since arrays are often how we structure list of things in JavaScript, we ...
分类:Web程序   时间:2016-04-14 01:17:04    阅读次数:225
观察者设计模式
Java设计模式横向分为三种:创建型,结构性,行为型。纵向又可以分为两种:类模式与对象模式。现在介绍其中一种,观察者设计模式。所谓观察者通俗来说就是:很多Observer类观察一个Observable类。(很多观察者观察一个东西),最典型的例子就是全球投资者观察股市波动时侯,只..
分类:其他好文   时间:2016-04-08 07:49:44    阅读次数:201
[Angular 2] Async Http
Async Pipe: The Asynce pipe receive a Promise or Observable as input and subscribes to the input, evetually emitting the value(s) changes arrive. In t ...
分类:Web程序   时间:2016-04-03 18:43:09    阅读次数:138
Java中的Vector和ArrayList的比较
今天在学习观察者模式时,查看了下Observable类,发现它里面的实现使用的是Vector,这个类不太熟悉,平时都没有使用过,查看这个类的源码,Vector的底层也是使用数组实现的,而且继承了AbstractList,实现了List接口,看着Vector和ArrayList很像:底层都是用数组实现 ...
分类:编程语言   时间:2016-03-31 18:56:29    阅读次数:136
EXTJS之Ext.util.Observable自定义事件
暂时还不会用Ext.mixin.Observable, 催悲的测试了近两个小时。这TMD的语法差距也太大了啊。。 在新版EXTJS里,已去除了addEvents。 弄个出来,大概知道下吧。 ...
分类:Web程序   时间:2016-03-28 23:28:17    阅读次数:752
Retrofit2和RxJava配合使用Demo
和Retrofit2单独使用有一些区别 首先,同样写个interface,这里是GitHubService.java,我们这次要实现获取官方提供的测试接口的数据 注意,上边的区别,retrofit2单独使用的时候是Call<List<Contributor>>,而rx使用的是Observable,可
分类:编程语言   时间:2016-03-22 18:56:04    阅读次数:510
angular2系列教程(九)Jsonp、URLSearchParams、中断选择数据流
大家好,今天我们要讲的是http模块的第二部分,主要学习ng2中Jsonp、URLSearchParams、observable中断选择数据流的用法。 例子的第一个程序,上节课已经讲过了。这节课我们学习第二个程序,从wiki的api中跨域获取数据,可实现300毫秒内中断和选择最近请求等炫酷功能,这些
分类:Web程序   时间:2016-03-21 17:55:06    阅读次数:6643
[RxJS] Creating Observable From Scratch
Get a better understanding of the RxJS Observable by implementing one that's similar from the ground up.
分类:Web程序   时间:2016-03-17 07:06:13    阅读次数:167
380条   上一页 1 ... 26 27 28 29 30 ... 38 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!