Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CCB17200C22 for ; Mon, 6 Feb 2017 18:32:10 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id C9EA8160B62; Mon, 6 Feb 2017 17:32:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id EE52E160B76 for ; Mon, 6 Feb 2017 18:32:07 +0100 (CET) Received: (qmail 12519 invoked by uid 500); 6 Feb 2017 17:32:06 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 9897 invoked by uid 99); 6 Feb 2017 17:32:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2017 17:32:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 50D91DFF2D; Mon, 6 Feb 2017 17:32:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davor@apache.org To: commits@beam.apache.org Date: Mon, 06 Feb 2017 17:32:34 -0000 Message-Id: <3aaeb98d175d496d822e77d6b31eb2d1@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [33/52] [abbrv] [partial] beam-site git commit: Regenerate website archived-at: Mon, 06 Feb 2017 17:32:11 -0000 http://git-wip-us.apache.org/repos/asf/beam-site/blob/7b1f1576/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItemCoder.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItemCoder.html b/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItemCoder.html new file mode 100644 index 0000000..f80b469 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItemCoder.html @@ -0,0 +1,473 @@ + + + + + + +KeyedWorkItemCoder (Apache Beam SDK for Java, version 0.5.0) + + + + + + + + + + + + +
+
org.apache.beam.runners.core
+

Class KeyedWorkItemCoder<K,ElemT>

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + +
        +
      • +

        getKeyCoder

        +
        public Coder<K> getKeyCoder()
        +
      • +
      + + + +
        +
      • +

        getElementCoder

        +
        public Coder<ElemT> getElementCoder()
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        getCoderArguments

        +
        public List<? extends Coder<?>> getCoderArguments()
        +
        Description copied from interface: Coder
        +
        If this is a Coder for a parameterized type, returns the + list of Coders being used for each of the parameters, or + returns null if this cannot be done or this is not a + parameterized type.
        +
      • +
      + + + +
        +
      • +

        verifyDeterministic

        +
        public void verifyDeterministic()
        +                         throws Coder.NonDeterministicException
        +
        Description copied from interface: Coder
        +
        Throw Coder.NonDeterministicException if the coding is not deterministic. + +

        In order for a Coder to be considered deterministic, + the following must be true: +

          +
        • two values that compare as equal (via Object.equals() + or Comparable.compareTo(), if supported) have the same + encoding. +
        • the Coder always produces a canonical encoding, which is the + same for an instance of an object even if produced on different + computers at different times. +
        +
        +
        Throws:
        +
        Coder.NonDeterministicException - if this coder is not deterministic.
        +
        +
      • +
      + + + +
        +
      • +

        consistentWithEquals

        +
        public boolean consistentWithEquals()
        +
        Returns true if this Coder is injective with respect to Object.equals(java.lang.Object). + +

        Whenever the encoded bytes of two values are equal, then the original values are equal + according to Objects.equals(). Note that this is well-defined for null. + +

        This condition is most notably false for arrays. More generally, this condition is false + whenever equals() compares object identity, rather than performing a + semantic/structural comparison.. + + KeyedWorkItemCoder is not consistent with equals as it can return a + KeyedWorkItem of a type different from the originally encoded type.

        +
        +
        Specified by:
        +
        consistentWithEquals in interface Coder<KeyedWorkItem<K,ElemT>>
        +
        Overrides:
        +
        consistentWithEquals in class StandardCoder<KeyedWorkItem<K,ElemT>>
        +
        Returns:
        +
        false for StandardCoder unless overridden.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2016–2017 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/7b1f1576/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.ComposedKeyedWorkItem.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.ComposedKeyedWorkItem.html b/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.ComposedKeyedWorkItem.html new file mode 100644 index 0000000..393d342 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.ComposedKeyedWorkItem.html @@ -0,0 +1,351 @@ + + + + + + +KeyedWorkItems.ComposedKeyedWorkItem (Apache Beam SDK for Java, version 0.5.0) + + + + + + + + + + + + +
+
org.apache.beam.runners.core
+

Class KeyedWorkItems.ComposedKeyedWorkItem<K,ElemT>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.beam.runners.core.KeyedWorkItems.ComposedKeyedWorkItem<K,ElemT>
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2016–2017 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/7b1f1576/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.html b/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.html new file mode 100644 index 0000000..f420792 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.5.0/org/apache/beam/runners/core/KeyedWorkItems.html @@ -0,0 +1,362 @@ + + + + + + +KeyedWorkItems (Apache Beam SDK for Java, version 0.5.0) + + + + + + + + + + + + +
+
org.apache.beam.runners.core
+

Class KeyedWorkItems

+
+
+ +
+
    +
  • +
    +
    +
    public class KeyedWorkItems
    +extends Object
    +
    Static utility methods that provide KeyedWorkItem implementations.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyedWorkItems

        +
        public KeyedWorkItems()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2016–2017 The Apache Software Foundation. All rights reserved.

+ +