forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ encoding is used when we don't have sufficient type information. | |
|
||
* We have added additional methods to the PCollection object, notably `map` | ||
and `flatmap`, [rather than only allowing apply](https://www.mail-archive.com/[email protected]/msg06035.html). | ||
In addition, `apply` can accept a function argument `(PColletion) => ...` as | ||
In addition, `apply` can accept a function argument `(PCollection) => ...` as | ||
well as a PTransform subclass, which treats this callable as if it were a | ||
PTransform's expand. | ||
|
||
|
@@ -102,7 +102,7 @@ We currently offer asynchronous variants of `PValue.apply(...)` (in addition | |
to the synchronous ones, as they are easier to chain) as well as making | ||
`Runner.run` asynchronous. TBD to do this for all user callbacks as well. | ||
|
||
An example pipeline can be found at https://github.com/robertwb/beam-javascript/blob/javascript/sdks/node-ts/src/apache_beam/examples/wordcount.ts | ||
An example pipeline can be found at https://github.com/apache/beam/blob/master/sdks/typescript/src/apache_beam/examples/wordcount.ts | ||
|
||
## TODO | ||
|
||
|