DATACOUCH 225 - Minimal SDK 2.2.6 support

This commit is contained in:
Jonathan Edwards
2016-05-09 09:31:23 -06:00
parent 2402c89e67
commit 117f0d0968
2 changed files with 44 additions and 3 deletions

View File

@@ -21,8 +21,8 @@
<dist.key>DATACOUCH</dist.key>
<couchbase>2.2.3</couchbase>
<couchbase.osgi>2.2.3</couchbase.osgi>
<couchbase>2.2.6</couchbase>
<couchbase.osgi>2.2.6</couchbase.osgi>
<springdata.commons>1.13.0.BUILD-SNAPSHOT</springdata.commons>
<validation>1.0.0.GA</validation>
</properties>

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2015 the original author or authors
* Copyright 2012-2016 the original author or authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,6 +31,7 @@ import rx.Scheduler;
* to be invoked. Useful when the delegate is not to be lifecycle-managed by Spring.
*
* @author Simon Baslé
* @author Jonathan Edwards
*/
public class CouchbaseEnvironmentNoShutdownProxy implements CouchbaseEnvironment {
@@ -283,4 +284,44 @@ public class CouchbaseEnvironmentNoShutdownProxy implements CouchbaseEnvironment
public boolean tcpNodelayEnabled() {
return delegate.tcpNodelayEnabled();
}
@Override
public boolean callbacksOnIoPool() {
return delegate.callbacksOnIoPool();
}
@Override
public String coreBuild() {
return delegate.coreBuild();
}
@Override
public String coreVersion() {
return delegate.coreVersion();
}
@Override
public String dcpConnectionName() {
return delegate.dcpConnectionName();
}
@Override
public int searchEndpoints() {
return delegate.searchEndpoints();
}
@Override
public String clientBuild() {
return delegate.clientBuild();
}
@Override
public String clientVersion() {
return delegate.clientVersion();
}
@Override
public long searchTimeout() {
return delegate.searchTimeout();
}
}