You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ag...@apache.org on 2018/12/11 00:52:59 UTC

[geode] branch develop updated: GEODE-6032: Updated javadoc to clarify what is communicated with hasD… (#2953)

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

agingade pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 53b1433  GEODE-6032: Updated javadoc to clarify what is communicated with hasD… (#2953)
53b1433 is described below

commit 53b1433079f98316c0e6cb3d911777efb7920dad
Author: agingade <ag...@pivotal.io>
AuthorDate: Mon Dec 10 16:52:51 2018 -0800

    GEODE-6032: Updated javadoc to clarify what is communicated with hasD… (#2953)
    
    GEODE-6032: Updated javadoc to clarify what is communicated with hasDelta()
---
 geode-core/src/main/java/org/apache/geode/Delta.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/Delta.java b/geode-core/src/main/java/org/apache/geode/Delta.java
index eef59d8..6104a48 100755
--- a/geode-core/src/main/java/org/apache/geode/Delta.java
+++ b/geode-core/src/main/java/org/apache/geode/Delta.java
@@ -32,7 +32,8 @@ import java.io.IOException;
 public interface Delta {
 
   /**
-   * Returns true if this object has pending changes it can write out.
+   * Returns true if this object has pending changes it can write out as a delta.
+   * Returns false if this object must be transmitted in its entirety.
    */
   boolean hasDelta();