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

    https://github.com/apache/spark/pull/10603#discussion_r48852732
  
    --- Diff: docs/streaming-custom-receivers.md ---
    @@ -273,9 +273,9 @@ class CustomActor extends Actor with ActorHelper {
     And a new input stream can be created with this custom actor as
     
     {% highlight scala %}
    -// Assuming ssc is the StreamingContext
    -val lines = ssc.actorStream[String](Props(new CustomActor()), 
"CustomReceiver")
    +val ssc: StreamingContext = ...
    +val lines = ssc.actorStream[String](Props[CustomActor], "CustomReceiver")
     {% endhighlight %}
     
     See 
[ActorWordCount.scala](https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/examples/streaming/ActorWordCount.scala)
    -for an end-to-end example.
    +for a complete example.
    --- End diff --
    
    It was discussed, but the changes are a result of my daily code reviews and 
I don't really know where I end up ahead. I'm now in Streaming so I 
will...*batch*...more changes next time.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to