官术网_书友最值得收藏!

The from_ operator

The from_ operator is the operator that was used in the previous example to create an observable from a list. The marble diagram of this operator is shown in the following figure:

Figure 1.11: The from_ operator
The name of this operator is strange because it ends with an underscore. The reason for this underscore is that from is a reserved keyword in Python, so it was not possible to name this operator as it should be; that is,  from. If you dislike this notation, there is an alias named from_list. You can use it for a more Pythonic code at the expense of a longer name.

The prototype of this operator is the following one:

Observable.from_(iterable, scheduler=None)

The first parameter accepts any iterable object. This includes lists, tuples, dictionaries, and any class that implements the iterator methods __iter__ and next. The second parameter is used to provide a scheduler that will be used to emit the items of the observable. This parameter is present on all creation operators. It is useful when running in an asynchronous environment or an environment with concurrency. We will study schedulers in detail in Chapter 5Concurrency and Paralellism in RxPY.

The from_ operator creates an observable that emits one item per entry in the iterable. It then completes the observable. Here are some examples of usage which show the items that they return:

Observable.from_(sys.argv) # argv[0], argv[1], argv[2]..., completed
Observable.from_([1, 2, 3, 4]) # 1, 2, 3, 4, completed
Observable.from_({'foo': 'fooz', 'bar': 'barz'}) # 'foo', 'bar', completed

Note that when using a dictionary, the observable contains the keys of the dictionary and not the values. This is the same behavior as a classic Python iteration on a dictionary using a for loop.

主站蜘蛛池模板: 莫力| 彭阳县| 新乡市| 舟曲县| 太白县| 五台县| 宁陵县| 淳化县| 临桂县| 龙游县| 健康| 武义县| 色达县| 建昌县| 隆化县| 广西| 阜南县| 北碚区| 北票市| 黔南| 潮州市| 内丘县| 洪泽县| 呼和浩特市| 大城县| 清镇市| 通榆县| 怀来县| 大方县| 松江区| 沂南县| 马公市| 定远县| 文山县| 德惠市| 孙吴县| 东源县| 灵武市| 穆棱市| 吉安市| 渑池县|