Github user tdas commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1395#discussion_r15606130
  
    --- Diff: 
streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaPairDStream.scala
 ---
    @@ -659,6 +659,52 @@ class JavaPairDStream[K, V](val dstream: DStream[(K, 
V)])(
       }
     
       /**
    +   * Return a new DStream by applying 'full outer join' between RDDs of 
`this` DStream and
    +   * `other` DStream. Hash partitioning is used to generate the RDDs with 
Spark's default
    +   * number of partitions.
    +   */
    +  def fullOuterJoin[W](other: JavaPairDStream[K, W])
    +      : JavaPairDStream[K, (Optional[V], Optional[W])] = {
    --- End diff --
    
    This does not need to be on the next line. It fits in the previous line I 
think.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to