aboutsummaryrefslogtreecommitdiff
path: root/docs/streaming-custom-receivers.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #577 from hsaputra/fix_simple_streaming_doc.Henry Saputra2014-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | SPARK-1075 Fix doc in the Spark Streaming custom receiver closing bracket in the class constructor The closing parentheses in the constructor in the first code block example is reversed: diff --git a/docs/streaming-custom-receivers.md b/docs/streaming-custom-receivers.md index 4e27d65..3fb540c 100644 — a/docs/streaming-custom-receivers.md +++ b/docs/streaming-custom-receivers.md @@ -14,7 +14,7 @@ This starts with implementing NetworkReceiver(api/streaming/index.html#org.apa The following is a simple socket text-stream receiver. {% highlight scala %} class SocketTextStreamReceiver(host: String, port: Int( + class SocketTextStreamReceiver(host: String, port: Int) extends NetworkReceiverString { protected lazy val blocksGenerator: BlockGenerator = Author: Henry Saputra <henry@platfora.com> Closes #577 and squashes the following commits: 6508341 [Henry Saputra] SPARK-1075 Fix doc in the Spark Streaming custom receiver.
* More fixesMatei Zaharia2013-09-011-29/+11
|
* Fix some URLsMatei Zaharia2013-09-011-1/+1
|
* Improved documentation for spark custom receiverPrashant Sharma2013-08-231-3/+48
|
* Removing duplicate doc.Tathagata Das2013-02-241-2/+2
|
* Fixed class paths and dependencies based on Matei's comments.Tathagata Das2013-02-241-0/+101