DATACOUCH-177 - Upgrade SDK dependency to 2.2.2
This commit is contained in:
4
pom.xml
4
pom.xml
@@ -21,8 +21,8 @@
|
||||
|
||||
<dist.key>DATACOUCH</dist.key>
|
||||
|
||||
<couchbase>2.2.0</couchbase>
|
||||
<couchbase.osgi>2.2.0</couchbase.osgi>
|
||||
<couchbase>2.2.2</couchbase>
|
||||
<couchbase.osgi>2.2.2</couchbase.osgi>
|
||||
<jackson>2.6.0</jackson>
|
||||
<springdata.commons>1.11.0.BUILD-SNAPSHOT</springdata.commons>
|
||||
<validation>1.0.0.GA</validation>
|
||||
|
||||
@@ -47,6 +47,11 @@ public class CouchbaseEnvironmentNoShutdownProxy implements CouchbaseEnvironment
|
||||
|
||||
//===== DELEGATION METHODS =====
|
||||
|
||||
@Override
|
||||
public Observable<Boolean> shutdownAsync() {
|
||||
return delegate.shutdownAsync();
|
||||
}
|
||||
|
||||
@Override
|
||||
public EventLoopGroup ioPool() {
|
||||
return delegate.ioPool();
|
||||
@@ -154,6 +159,16 @@ public class CouchbaseEnvironmentNoShutdownProxy implements CouchbaseEnvironment
|
||||
return delegate.responseBufferSize();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int dcpConnectionBufferSize() {
|
||||
return delegate.dcpConnectionBufferSize();
|
||||
}
|
||||
|
||||
@Override
|
||||
public double dcpConnectionBufferAckThreshold() {
|
||||
return delegate.dcpConnectionBufferAckThreshold();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int kvEndpoints() {
|
||||
return delegate.kvEndpoints();
|
||||
@@ -249,6 +264,11 @@ public class CouchbaseEnvironmentNoShutdownProxy implements CouchbaseEnvironment
|
||||
return delegate.networkLatencyMetricsCollector();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int socketConnectTimeout() {
|
||||
return delegate.socketConnectTimeout();
|
||||
}
|
||||
|
||||
@Override
|
||||
public MetricsCollector runtimeMetricsCollector() {
|
||||
return delegate.runtimeMetricsCollector();
|
||||
|
||||
Reference in New Issue
Block a user