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

randgalt pushed a change to branch persistent-watcher-cache
in repository https://gitbox.apache.org/repos/asf/curator.git.


 discard cd1e12b  wip
    omit 5593808  Added support for a PersistentWatcher recipe based on new 
persistent watch APIs
    omit ed3f517  Support ZK 3.6 and add support for upcoming Persistent 
Recursive Watch APIs.
     add 551e866  CURATOR-546
     add bdddaf9  Support ZK 3.6 and add support for upcoming Persistent 
Recursive Watch APIs.
     new 7f1f644  Support ZK 3.6 and add support for upcoming Persistent 
Recursive Watch APIs.
     new 33f5c6c  Added support for a PersistentWatcher recipe based on new 
persistent watch APIs
     new 6da56a8  Support ZK 3.6 and add support for upcoming Persistent 
Recursive Watch APIs.
     new d8eac95  Added support for a PersistentWatcher recipe based on new 
persistent watch APIs
     new 0a0d867  Created new replacement cache recipe, CuratorCache. Replaces 
TreeCache, NodeCache and PathChildrenCache when Persistent Watchers are 
available.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (cd1e12b)
            \
             N -- N -- N   refs/heads/persistent-watcher-cache (0a0d867)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/curator/framework/CuratorFramework.java |  2 +-
 .../api/{Statable.java => WatchesBuilder.java}     | 64 +++++++++---------
 .../framework/imps/CuratorFrameworkImpl.java       |  4 +-
 .../framework/imps/RemoveWatchesBuilderImpl.java   |  9 ++-
 .../curator/framework/imps/WatchesBuilderImpl.java | 47 +++++++++++++
 .../curator/framework/imps/TestFramework.java      |  4 +-
 .../framework/recipes/watch/PersistentWatcher.java |  2 +-
 .../curator/x/async/api/AsyncAddWatchBuilder.java  | 33 ++++++++++
 .../x/async/api/AsyncPersistentWatchBuilder.java   | 51 ---------------
 .../x/async/details/AsyncAddWatchBuilderImpl.java  | 76 ++++++++++++++++++++++
 .../x/async/modeled/details/ModeledCacheImpl.java  |  2 +-
 .../async/modeled/TestCachedModeledFramework.java  | 32 ++++++---
 12 files changed, 226 insertions(+), 100 deletions(-)
 copy 
curator-framework/src/main/java/org/apache/curator/framework/api/{Statable.java 
=> WatchesBuilder.java} (79%)
 create mode 100644 
curator-framework/src/main/java/org/apache/curator/framework/imps/WatchesBuilderImpl.java
 create mode 100644 
curator-x-async/src/main/java/org/apache/curator/x/async/api/AsyncAddWatchBuilder.java
 delete mode 100644 
curator-x-async/src/main/java/org/apache/curator/x/async/api/AsyncPersistentWatchBuilder.java
 create mode 100644 
curator-x-async/src/main/java/org/apache/curator/x/async/details/AsyncAddWatchBuilderImpl.java

Reply via email to