You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by mi...@apache.org on 2016/03/01 21:22:19 UTC

svn commit: r1733132 - in /olingo/site/trunk/content/doc/odata4: index.mdtext tutorials/streaming/tutorial_streaming.mdtext

Author: mibo
Date: Tue Mar  1 20:22:19 2016
New Revision: 1733132

URL: http://svn.apache.org/viewvc?rev=1733132&view=rev
Log:
Fixed git project sample location

Modified:
    olingo/site/trunk/content/doc/odata4/index.mdtext
    olingo/site/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.mdtext

Modified: olingo/site/trunk/content/doc/odata4/index.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/index.mdtext?rev=1733132&r1=1733131&r2=1733132&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/index.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/index.mdtext Tue Mar  1 20:22:19 2016
@@ -48,6 +48,8 @@ Notice:    Licensed to the Apache Softwa
     * [Tutorial Part 7: Add Media entities to the service (with Eclipse)](/doc/odata4/tutorials/media/tutorial_media.html)
     * [Tutorial Part 8: Add Batch request support to the service](/doc/odata4/tutorials/batch/tutorial_batch.html)
     * [Tutorial Part 9: Add "deep insert" handling to the service](/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.html)
+  * Extended Tutorials
+    * [Enable *Entity Collection* streaming support](/doc/odata4/tutorials/streaming/tutorial_streaming.html)
 
 
 ## Javadoc

Modified: olingo/site/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.mdtext?rev=1733132&r1=1733131&r2=1733132&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/streaming/tutorial_streaming.mdtext Tue Mar  1 20:22:19 2016
@@ -25,10 +25,9 @@ Notice:    Licensed to the Apache Softwa
 In the present tutorial we will add streaming support for Entity Collections on a per Entity granularity.
 
 **Note:**
-The final source code can be found in the project [git repository](https://git-wip-us.apache.org/repos/asf/olingo-odata4).
-A detailed description how to checkout the tutorials can be found [here](/doc/odata4/tutorials/prerequisites/prerequisites.html).
-This tutorial can be found in subdirectory /samples/tutorials/streaming
-
+The final source code can be found in the project [git repository](https://git-wip-us.apache.org/repos/asf/olingo-odata4).  
+A detailed description how to checkout the tutorials can be found [here](/doc/odata4/tutorials/prerequisites/prerequisites.html).  
+This tutorial can be found in the `DemoService-Streaming` module withing the projects subdirectory `/samples/tutorials/pe_streaming`
 
 **Table of Contents**
 
@@ -275,7 +274,7 @@ A basic `ODataContentWriteErrorCallback`
         try {
           channel.write(ByteBuffer.wrap(message.getBytes()));
         } catch (IOException e) {
-          throw new RuntimeException();
+          throw new RuntimeException(e);
         }
       }
     };