INT-3616: Zookeeper LockRegistry

JIRA: https://jira.spring.io/browse/INT-3616

Zookeeper implementation of `LockRegistry`, for example to support
clustered aggregators (when using external message group stores).

INT-3616: Polishing; PR Comments
This commit is contained in:
Gary Russell
2015-06-17 16:13:45 -04:00
committed by Artem Bilan
parent ec5230abc7
commit 06ffc19b0b
11 changed files with 721 additions and 49 deletions

View File

@@ -29,10 +29,11 @@ import org.springframework.util.ObjectUtils;
* Mainly useful in conjunction with retrying matcherss such as {@link EventuallyMatcher}
*
* @author Marius Bogoevici
* @since 4.2
*/
public class EqualsResultMatcher<U> extends DiagnosingMatcher<U> {
private Evaluator<U> evaluator;
private final Evaluator<U> evaluator;
public EqualsResultMatcher(Evaluator<U> evaluator) {
this.evaluator = evaluator;

View File

@@ -29,6 +29,7 @@ import org.hamcrest.Matcher;
* (Copied from {@code org.springframework.xd.test.fixtures.EventuallyMatcher})
*
* @author Eric Bottard
* @since 4.2
*/
public class EventuallyMatcher<U> extends DiagnosingMatcher<U> {