Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/Windows.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/Windows.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/Windows.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/Windows.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>Windows (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>Windows (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Windows (samza-api 0.14.1 API)"; + parent.document.title="Windows (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { @@ -161,7 +161,7 @@ extends java.lang.Object</pre> and triggers are fired and window panes are emitted per-key. It is possible to construct "keyed" variants of the window types above. - <p> The value for the window can be updated incrementally by providing an <code>initialValue</code> <code>Supplier</code> + <p> The value for the window can be updated incrementally by providing an <code>initialValue</code> <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions"><code>SupplierFunction</code></a> and an aggregating <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions"><code>FoldLeftFunction</code></a>. The initial value supplier is invoked every time a new window is created. The aggregating function is invoked for each incoming message for the window. If these are not provided, the emitted <a href="../../../../../org/apache/samza/operators/windows/WindowPane.html" title="class in org.apache.samza.operators.windows"><code>WindowPane</code></a> will contain a collection of messages in the window. @@ -188,7 +188,7 @@ extends java.lang.Object</pre> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static <M,K> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,java.util.Collection<M>></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedSessionWindow-java.util.function.Function-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedSessionWindow</a></span>(java.util.function.Function<? super M,? extends K> keyFn, +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedSessionWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedSessionWindow</a></span>(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><? super M,? extends K> keyFn, java.time.Duration sessionGap, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><M> msgSerde)</code> @@ -198,9 +198,9 @@ extends java.lang.Object</pre> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <M,K,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,WV></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedSessionWindow-java.util.function.Function-java.time.Duration-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedSessionWindow</a></span>(java.util.function.Function<? super M,? extends K> keyFn, +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedSessionWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedSessionWindow</a></span>(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><? super M,? extends K> keyFn, java.time.Duration sessionGap, - java.util.function.Supplier<? extends WV> initialValue, + <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><? extends WV> initialValue, <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><? super M,WV> aggregator, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><WV> windowValueSerde)</code> @@ -210,9 +210,9 @@ extends java.lang.Object</pre> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>static <M,K,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,WV></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedTumblingWindow-java.util.function.Function-java.time.Duration-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedTumblingWindow</a></span>(java.util.function.Function<? super M,? extends K> keyFn, +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedTumblingWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedTumblingWindow</a></span>(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><? super M,? extends K> keyFn, java.time.Duration interval, - java.util.function.Supplier<? extends WV> initialValue, + <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><? extends WV> initialValue, <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><? super M,WV> aggregator, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><WV> windowValueSerde)</code> @@ -222,7 +222,7 @@ extends java.lang.Object</pre> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>static <M,K> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,java.util.Collection<M>></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedTumblingWindow-java.util.function.Function-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedTumblingWindow</a></span>(java.util.function.Function<M,K> keyFn, +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#keyedTumblingWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">keyedTumblingWindow</a></span>(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><M,K> keyFn, java.time.Duration interval, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><M> msgSerde)</code> @@ -240,8 +240,8 @@ extends java.lang.Object</pre> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>static <M,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,java.lang.Void,WV></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#tumblingWindow-java.time.Duration-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-">tumblingWindow</a></span>(java.time.Duration interval, - java.util.function.Supplier<? extends WV> initialValue, +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/samza/operators/windows/Windows.html#tumblingWindow-java.time.Duration-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-">tumblingWindow</a></span>(java.time.Duration interval, + <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><? extends WV> initialValue, <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><? super M,WV> aggregator, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><WV> windowValueSerde)</code> <div class="block">Creates a <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows"><code>Window</code></a> that windows values into fixed-size processing time based windows and aggregates @@ -270,15 +270,15 @@ extends java.lang.Object</pre> <!-- --> </a> <h3>Method Detail</h3> -<a name="keyedTumblingWindow-java.util.function.Function-java.time.Duration-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> +<a name="keyedTumblingWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>keyedTumblingWindow</h4> -<pre>public static <M,K,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,WV> keyedTumblingWindow(java.util.function.Function<? super M,? extends K> keyFn, +<pre>public static <M,K,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,WV> keyedTumblingWindow(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><? super M,? extends K> keyFn, java.time.Duration interval, - java.util.function.Supplier<? extends WV> initialValue, + <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><? extends WV> initialValue, <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><? super M,WV> aggregator, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><WV> windowValueSerde)</pre> @@ -289,8 +289,8 @@ extends java.lang.Object</pre> <pre> <code> MessageStream<UserClick> stream = ...; - Function<UserClick, String> keyFn = ...; - Supplier<Integer> initialValue = () -> 0; + MapFunction<UserClick, String> keyFn = ...; + SupplierFunction<Integer> initialValue = () -> 0; FoldLeftFunction<UserClick, Integer, Integer> maxAggregator = (m, c) -> Math.max(parseInt(m), c); MessageStream<WindowPane<String, Integer>> windowedStream = stream.window( Windows.keyedTumblingWindow(keyFn, Duration.ofSeconds(10), maxAggregator)); @@ -314,13 +314,13 @@ extends java.lang.Object</pre> </dl> </li> </ul> -<a name="keyedTumblingWindow-java.util.function.Function-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> +<a name="keyedTumblingWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>keyedTumblingWindow</h4> -<pre>public static <M,K> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,java.util.Collection<M>> keyedTumblingWindow(java.util.function.Function<M,K> keyFn, +<pre>public static <M,K> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,java.util.Collection<M>> keyedTumblingWindow(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><M,K> keyFn, java.time.Duration interval, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><M> msgSerde)</pre> @@ -350,14 +350,14 @@ extends java.lang.Object</pre> </dl> </li> </ul> -<a name="tumblingWindow-java.time.Duration-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-"> +<a name="tumblingWindow-java.time.Duration-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>tumblingWindow</h4> <pre>public static <M,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,java.lang.Void,WV> tumblingWindow(java.time.Duration interval, - java.util.function.Supplier<? extends WV> initialValue, + <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><? extends WV> initialValue, <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><? super M,WV> aggregator, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><WV> windowValueSerde)</pre> <div class="block">Creates a <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows"><code>Window</code></a> that windows values into fixed-size processing time based windows and aggregates @@ -367,7 +367,7 @@ extends java.lang.Object</pre> <pre> <code> MessageStream<String> stream = ...; - Supplier<Integer> initialValue = () -> 0; + SupplierFunction<Integer> initialValue = () -> 0; FoldLeftFunction<String, Integer, Integer> maxAggregator = (m, c) -> Math.max(parseInt(m), c); MessageStream<WindowPane<Void, Integer>> windowedStream = stream.window( Windows.tumblingWindow(Duration.ofSeconds(10), maxAggregator)); @@ -422,15 +422,15 @@ extends java.lang.Object</pre> </dl> </li> </ul> -<a name="keyedSessionWindow-java.util.function.Function-java.time.Duration-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> +<a name="keyedSessionWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>keyedSessionWindow</h4> -<pre>public static <M,K,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,WV> keyedSessionWindow(java.util.function.Function<? super M,? extends K> keyFn, +<pre>public static <M,K,WV> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,WV> keyedSessionWindow(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><? super M,? extends K> keyFn, java.time.Duration sessionGap, - java.util.function.Supplier<? extends WV> initialValue, + <a href="../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><? extends WV> initialValue, <a href="../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><? super M,WV> aggregator, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><WV> windowValueSerde)</pre> @@ -445,7 +445,7 @@ extends java.lang.Object</pre> <pre> <code> MessageStream<UserClick> stream = ...; - Supplier<Integer> initialValue = () -> 0; + SupplierFunction<Integer> initialValue = () -> 0; FoldLeftFunction<UserClick, Integer, Integer> maxAggregator = (m, c) -> Math.max(parseInt(m), c); Function<UserClick, String> userIdExtractor = m -> m.getUserId()..; MessageStream<WindowPane<String, Integer>> windowedStream = stream.window( @@ -470,13 +470,13 @@ extends java.lang.Object</pre> </dl> </li> </ul> -<a name="keyedSessionWindow-java.util.function.Function-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> +<a name="keyedSessionWindow-org.apache.samza.operators.functions.MapFunction-java.time.Duration-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>keyedSessionWindow</h4> -<pre>public static <M,K> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,java.util.Collection<M>> keyedSessionWindow(java.util.function.Function<? super M,? extends K> keyFn, +<pre>public static <M,K> <a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,K,java.util.Collection<M>> keyedSessionWindow(<a href="../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><? super M,? extends K> keyFn, java.time.Duration sessionGap, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><K> keySerde, <a href="../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><M> msgSerde)</pre> @@ -491,7 +491,7 @@ extends java.lang.Object</pre> <pre> <code> MessageStream<UserClick> stream = ...; - Supplier<Integer> initialValue = () -> 0; + SupplierFunction<Integer> initialValue = () -> 0; FoldLeftFunction<UserClick, Integer, Integer> maxAggregator = (m, c)-> Math.max(parseIntField(m), c); Function<UserClick, String> userIdExtractor = m -> m.getUserId()..; MessageStream<WindowPane<String>, Collection<M>> windowedStream = stream.window(
Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowInternal.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowInternal.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowInternal.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowInternal.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>WindowInternal (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>WindowInternal (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="WindowInternal (samza-api 0.14.1 API)"; + parent.document.title="WindowInternal (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { @@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab"; </dl> <dl> <dt>All Implemented Interfaces:</dt> -<dd><a href="../../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,WK,WV></dd> +<dd>java.io.Serializable, <a href="../../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows">Window</a><M,WK,WV></dd> </dl> <hr> <br> @@ -126,6 +126,10 @@ implements <a href="../../../../../../or and whether to accumulate or discard previously emitted panes. Note: This class is meant to be used internally by Samza, and is not to be instantiated by programmers.</div> +<dl> +<dt><span class="seeLabel">See Also:</span></dt> +<dd><a href="../../../../../../serialized-form.html#org.apache.samza.operators.windows.internal.WindowInternal">Serialized Form</a></dd> +</dl> </li> </ul> </div> @@ -144,11 +148,11 @@ implements <a href="../../../../../../or <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> -<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#WindowInternal-org.apache.samza.operators.triggers.Trigger-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-java.util.function.Function-java.util.function.Function-org.apache.samza.operators.windows.internal.WindowType-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">WindowInternal</a></span>(<a href="../../../../../../org/apache/samza/operators/triggers/Trigger.html" title="interface in org.apache.samza.operators.triggers">Trigger</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>> defaultTrigger, - java.util.function.Supplier<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> initializer, +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#WindowInternal-org.apache.samza.operators.triggers.Trigger-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.operators.functions.MapFunction-org.apache.samza.operators.functions.MapFunction-org.apache.samza.operators.windows.internal.WindowType-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-">WindowInternal</a></span>(<a href="../../../../../../org/apache/samza/operators/triggers/Trigger.html" title="interface in org.apache.samza.operators.triggers">Trigger</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>> defaultTrigger, + <a href="../../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> initializer, <a href="../../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> foldLeftFunction, - java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> keyExtractor, - java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long> eventTimeExtractor, + <a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> keyExtractor, + <a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long> eventTimeExtractor, <a href="../../../../../../org/apache/samza/operators/windows/internal/WindowType.html" title="enum in org.apache.samza.operators.windows.internal">WindowType</a> windowType, <a href="../../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> keySerde, <a href="../../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> windowValueSerde, @@ -182,7 +186,7 @@ implements <a href="../../../../../../or <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#getEarlyTrigger--">getEarlyTrigger</a></span>()</code> </td> </tr> <tr id="i3" class="rowColor"> -<td class="colFirst"><code>java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long></code></td> +<td class="colFirst"><code><a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#getEventTimeExtractor--">getEventTimeExtractor</a></span>()</code> </td> </tr> <tr id="i4" class="altColor"> @@ -190,11 +194,11 @@ implements <a href="../../../../../../or <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#getFoldLeftFunction--">getFoldLeftFunction</a></span>()</code> </td> </tr> <tr id="i5" class="rowColor"> -<td class="colFirst"><code>java.util.function.Supplier<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>></code></td> +<td class="colFirst"><code><a href="../../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#getInitializer--">getInitializer</a></span>()</code> </td> </tr> <tr id="i6" class="altColor"> -<td class="colFirst"><code>java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>></code></td> +<td class="colFirst"><code><a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html#getKeyExtractor--">getKeyExtractor</a></span>()</code> </td> </tr> <tr id="i7" class="rowColor"> @@ -261,17 +265,17 @@ implements <a href="../../../../../../or <!-- --> </a> <h3>Constructor Detail</h3> -<a name="WindowInternal-org.apache.samza.operators.triggers.Trigger-java.util.function.Supplier-org.apache.samza.operators.functions.FoldLeftFunction-java.util.function.Function-java.util.function.Function-org.apache.samza.operators.windows.internal.WindowType-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> +<a name="WindowInternal-org.apache.samza.operators.triggers.Trigger-org.apache.samza.operators.functions.SupplierFunction-org.apache.samza.operators.functions.FoldLeftFunction-org.apache.samza.operators.functions.MapFunction-org.apache.samza.operators.functions.MapFunction-org.apache.samza.operators.windows.internal.WindowType-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-org.apache.samza.serializers.Serde-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>WindowInternal</h4> <pre>public WindowInternal(<a href="../../../../../../org/apache/samza/operators/triggers/Trigger.html" title="interface in org.apache.samza.operators.triggers">Trigger</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>> defaultTrigger, - java.util.function.Supplier<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> initializer, + <a href="../../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> initializer, <a href="../../../../../../org/apache/samza/operators/functions/FoldLeftFunction.html" title="interface in org.apache.samza.operators.functions">FoldLeftFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> foldLeftFunction, - java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> keyExtractor, - java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long> eventTimeExtractor, + <a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> keyExtractor, + <a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long> eventTimeExtractor, <a href="../../../../../../org/apache/samza/operators/windows/internal/WindowType.html" title="enum in org.apache.samza.operators.windows.internal">WindowType</a> windowType, <a href="../../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> keySerde, <a href="../../../../../../org/apache/samza/serializers/Serde.html" title="interface in org.apache.samza.serializers">Serde</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> windowValueSerde, @@ -319,7 +323,7 @@ implements <a href="../../../../../../or <ul class="blockList"> <li class="blockList"> <h4>getInitializer</h4> -<pre>public java.util.function.Supplier<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> getInitializer()</pre> +<pre>public <a href="../../../../../../org/apache/samza/operators/functions/SupplierFunction.html" title="interface in org.apache.samza.operators.functions">SupplierFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WV</a>> getInitializer()</pre> </li> </ul> <a name="getFoldLeftFunction--"> @@ -337,7 +341,7 @@ implements <a href="../../../../../../or <ul class="blockList"> <li class="blockList"> <h4>getKeyExtractor</h4> -<pre>public java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> getKeyExtractor()</pre> +<pre>public <a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">WK</a>> getKeyExtractor()</pre> </li> </ul> <a name="getEventTimeExtractor--"> @@ -346,7 +350,7 @@ implements <a href="../../../../../../or <ul class="blockList"> <li class="blockList"> <h4>getEventTimeExtractor</h4> -<pre>public java.util.function.Function<<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long> getEventTimeExtractor()</pre> +<pre>public <a href="../../../../../../org/apache/samza/operators/functions/MapFunction.html" title="interface in org.apache.samza.operators.functions">MapFunction</a><<a href="../../../../../../org/apache/samza/operators/windows/internal/WindowInternal.html" title="type parameter in WindowInternal">M</a>,java.lang.Long> getEventTimeExtractor()</pre> </li> </ul> <a name="getWindowType--"> Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowType.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowType.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowType.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/WindowType.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>WindowType (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>WindowType (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="WindowType (samza-api 0.14.1 API)"; + parent.document.title="WindowType (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-frame.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-frame.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-frame.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-frame.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.operators.windows.internal (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.operators.windows.internal (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-summary.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-summary.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-summary.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-summary.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.operators.windows.internal (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.operators.windows.internal (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza.operators.windows.internal (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza.operators.windows.internal (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-tree.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-tree.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-tree.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/internal/package-tree.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.operators.windows.internal Class Hierarchy (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.operators.windows.internal Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza.operators.windows.internal Class Hierarchy (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza.operators.windows.internal Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-frame.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-frame.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-frame.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-frame.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.operators.windows (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.operators.windows (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-summary.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-summary.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-summary.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-summary.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.operators.windows (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.operators.windows (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza.operators.windows (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza.operators.windows (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-tree.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-tree.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-tree.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/operators/windows/package-tree.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.operators.windows Class Hierarchy (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.operators.windows Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza.operators.windows Class Hierarchy (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza.operators.windows Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { @@ -88,8 +88,12 @@ </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> +<li type="circle">java.io.Serializable +<ul> <li type="circle">org.apache.samza.operators.windows.<a href="../../../../../org/apache/samza/operators/windows/Window.html" title="interface in org.apache.samza.operators.windows"><span class="typeNameLink">Window</span></a><M,K,WV></li> </ul> +</li> +</ul> <h2 title="Enum Hierarchy">Enum Hierarchy</h2> <ul> <li type="circle">java.lang.Object Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-frame.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-frame.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-frame.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-frame.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-summary.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-summary.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-summary.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-summary.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-tree.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-tree.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-tree.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/package-tree.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza Class Hierarchy (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza Class Hierarchy (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ApplicationRunner.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ApplicationRunner.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ApplicationRunner.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ApplicationRunner.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:06 PDT 2018 --> -<title>ApplicationRunner (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:53 PDT 2018 --> +<title>ApplicationRunner (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ApplicationRunner (samza-api 0.14.1 API)"; + parent.document.title="ApplicationRunner (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ProcessorIdGenerator.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ProcessorIdGenerator.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ProcessorIdGenerator.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/ProcessorIdGenerator.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:06 PDT 2018 --> -<title>ProcessorIdGenerator (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:53 PDT 2018 --> +<title>ProcessorIdGenerator (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ProcessorIdGenerator (samza-api 0.14.1 API)"; + parent.document.title="ProcessorIdGenerator (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-frame.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-frame.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-frame.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-frame.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.runtime (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.runtime (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-summary.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-summary.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-summary.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-summary.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.runtime (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.runtime (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza.runtime (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza.runtime (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-tree.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-tree.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-tree.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/runtime/package-tree.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>org.apache.samza.runtime Class Hierarchy (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>org.apache.samza.runtime Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="org.apache.samza.runtime Class Hierarchy (samza-api 0.14.1 API)"; + parent.document.title="org.apache.samza.runtime Class Hierarchy (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>ByteBufferSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>ByteBufferSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ByteBufferSerde (samza-api 0.14.1 API)"; + parent.document.title="ByteBufferSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerdeFactory.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerdeFactory.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerdeFactory.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteBufferSerdeFactory.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>ByteBufferSerdeFactory (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>ByteBufferSerdeFactory (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ByteBufferSerdeFactory (samza-api 0.14.1 API)"; + parent.document.title="ByteBufferSerdeFactory (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>ByteSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>ByteSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ByteSerde (samza-api 0.14.1 API)"; + parent.document.title="ByteSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerdeFactory.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerdeFactory.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerdeFactory.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/ByteSerdeFactory.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>ByteSerdeFactory (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>ByteSerdeFactory (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="ByteSerdeFactory (samza-api 0.14.1 API)"; + parent.document.title="ByteSerdeFactory (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/Deserializer.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/Deserializer.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/Deserializer.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/Deserializer.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>Deserializer (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>Deserializer (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Deserializer (samza-api 0.14.1 API)"; + parent.document.title="Deserializer (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>DoubleSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>DoubleSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DoubleSerde (samza-api 0.14.1 API)"; + parent.document.title="DoubleSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerdeFactory.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerdeFactory.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerdeFactory.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/DoubleSerdeFactory.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>DoubleSerdeFactory (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>DoubleSerdeFactory (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="DoubleSerdeFactory (samza-api 0.14.1 API)"; + parent.document.title="DoubleSerdeFactory (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>IntegerSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>IntegerSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="IntegerSerde (samza-api 0.14.1 API)"; + parent.document.title="IntegerSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerdeFactory.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerdeFactory.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerdeFactory.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/IntegerSerdeFactory.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>IntegerSerdeFactory (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>IntegerSerdeFactory (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="IntegerSerdeFactory (samza-api 0.14.1 API)"; + parent.document.title="IntegerSerdeFactory (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>JsonSerdeV2 (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>JsonSerdeV2 (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="JsonSerdeV2 (samza-api 0.14.1 API)"; + parent.document.title="JsonSerdeV2 (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2Factory.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2Factory.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2Factory.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/JsonSerdeV2Factory.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>JsonSerdeV2Factory (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>JsonSerdeV2Factory (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="JsonSerdeV2Factory (samza-api 0.14.1 API)"; + parent.document.title="JsonSerdeV2Factory (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/KVSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/KVSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/KVSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/KVSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>KVSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>KVSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="KVSerde (samza-api 0.14.1 API)"; + parent.document.title="KVSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>LongSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>LongSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="LongSerde (samza-api 0.14.1 API)"; + parent.document.title="LongSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerdeFactory.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerdeFactory.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerdeFactory.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/LongSerdeFactory.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>LongSerdeFactory (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>LongSerdeFactory (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="LongSerdeFactory (samza-api 0.14.1 API)"; + parent.document.title="LongSerdeFactory (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) { Modified: samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/NoOpSerde.html URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/NoOpSerde.html?rev=1832282&r1=1832281&r2=1832282&view=diff ============================================================================== --- samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/NoOpSerde.html (original) +++ samza/site/learn/documentation/latest/api/javadocs/org/apache/samza/serializers/NoOpSerde.html Fri May 25 22:32:33 2018 @@ -2,9 +2,9 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_121) on Thu May 24 12:04:07 PDT 2018 --> -<title>NoOpSerde (samza-api 0.14.1 API)</title> -<meta name="date" content="2018-05-24"> +<!-- Generated by javadoc (1.8.0_121) on Fri May 25 15:29:54 PDT 2018 --> +<title>NoOpSerde (samza-api 0.15.0-SNAPSHOT API)</title> +<meta name="date" content="2018-05-25"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="NoOpSerde (samza-api 0.14.1 API)"; + parent.document.title="NoOpSerde (samza-api 0.15.0-SNAPSHOT API)"; } } catch(err) {
