You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2019/03/08 14:44:13 UTC

[beam] branch asf-site updated: Publishing website 2019/03/08 14:44:07 at commit c230034

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new d482355  Publishing website 2019/03/08 14:44:07 at commit c230034
d482355 is described below

commit d48235504e3883f4d248c43defd206a79919de4f
Author: jenkins <bu...@apache.org>
AuthorDate: Fri Mar 8 14:44:07 2019 +0000

    Publishing website 2019/03/08 14:44:07 at commit c230034
---
 website/generated-content/documentation/sdks/java/euphoria/index.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/generated-content/documentation/sdks/java/euphoria/index.html b/website/generated-content/documentation/sdks/java/euphoria/index.html
index 3e51714..ff357d5 100644
--- a/website/generated-content/documentation/sdks/java/euphoria/index.html
+++ b/website/generated-content/documentation/sdks/java/euphoria/index.html
@@ -544,9 +544,9 @@ the API as a high level DSL over Beam Java SDK and share our effort with the com
 <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="c1">// suppose keyValueInput: [KV(1, 100L), KV(3, 100_000L), KV(42, 10L), KV(1, 0L), KV(3, 0L)]</span>
 <span class="n">Distinct</span><span class="o">.</span><span class="na">named</span><span class="o">(</span><span class="s">"unique-keys-only"</span><span class="o">)</span>
   <span class="o">.</span><span class="na">of</span><span class="o">(</span><span class="n">keyValueInput</span><span class="o">)</span>
-  <span class="o">.</span><span class="na">mapped</span><span class="o">(</span><span class="nl">KV:</span><span class="o">:</span><span class="n">getKey</span><span class="o">)</span>
+  <span class="o">.</span><span class="na">projected</span><span class="o">(</span><span class="nl">KV:</span><span class="o">:</span><span class="n">getKey</span><span class="o">)</span>
   <span class="o">.</span><span class="na">output</span><span class="o">();</span>
-<span class="c1">// Output will contain:  1, 3, 42</span>
+<span class="c1">// Output will contain kvs with keys:  1, 3, 42 with some arbitrary values associated with given keys</span>
 </code></pre>
 </div>