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

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.

主站蜘蛛池模板: 峨眉山市| 德惠市| 延寿县| 安顺市| 崇文区| 宜君县| 靖安县| 久治县| 民县| 广饶县| 河北区| 娱乐| 平舆县| 和林格尔县| 嘉峪关市| 九龙县| 弋阳县| 洛隆县| 会昌县| 丰县| 西吉县| 海伦市| 新建县| 博罗县| 东至县| 沈丘县| 仪征市| 漳平市| 会东县| 犍为县| 台山市| 象山县| 蛟河市| 元谋县| 嘉祥县| 山阴县| 望江县| 宁明县| 兰考县| 永修县| 高雄县|