|
@@ -19,6 +19,7 @@ RxLua
|
|
- [fromRange](#fromrangeinitial-limit-step)
|
|
- [fromRange](#fromrangeinitial-limit-step)
|
|
- [fromTable](#fromtabletable-iterator-keys)
|
|
- [fromTable](#fromtabletable-iterator-keys)
|
|
- [fromCoroutine](#fromcoroutinecoroutine)
|
|
- [fromCoroutine](#fromcoroutinecoroutine)
|
|
|
|
+ - [fromFileByLine](#fromfilebylinefilename)
|
|
- [defer](#deferfactory)
|
|
- [defer](#deferfactory)
|
|
- [replicate](#replicatevalue-count)
|
|
- [replicate](#replicatevalue-count)
|
|
- [dump](#dumpname-formatter)
|
|
- [dump](#dumpname-formatter)
|
|
@@ -259,6 +260,16 @@ Creates an Observable that produces values when the specified coroutine yields.
|
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
|
|
+#### `.fromFileByLine(filename)`
|
|
|
|
+
|
|
|
|
+Creates an Observable that produces values from a file, line by line.
|
|
|
|
+
|
|
|
|
+| Name | Type | Default | Description |
|
|
|
|
+|------|------|---------|-------------|
|
|
|
|
+| `filename` | string | | The name of the file used to create the Observable |
|
|
|
|
+
|
|
|
|
+---
|
|
|
|
+
|
|
#### `.defer(factory)`
|
|
#### `.defer(factory)`
|
|
|
|
|
|
Creates an Observable that creates a new Observable for each observer using a factory function.
|
|
Creates an Observable that creates a new Observable for each observer using a factory function.
|
|
@@ -1014,4 +1025,3 @@ Pushes zero or more values to the ReplaySubject. They will be broadcasted to all
|
|
| Name | Type | Default | Description |
|
|
| Name | Type | Default | Description |
|
|
|------|------|---------|-------------|
|
|
|------|------|---------|-------------|
|
|
| `values` | *... | | |
|
|
| `values` | *... | | |
|
|
-
|
|
|