DATAMONGO-2220 - Upgrade to MongoDB Reactive Streams Driver 1.11.0.

This commit is contained in:
Mark Paluch
2019-03-06 15:54:54 +01:00
parent ec50d96d23
commit 7f8319785d
2 changed files with 6 additions and 1 deletions

View File

@@ -29,7 +29,7 @@
<dist.id>spring-data-mongodb</dist.id>
<springdata.commons>2.2.0.BUILD-SNAPSHOT</springdata.commons>
<mongo>3.10.1</mongo>
<mongo.reactivestreams>1.9.2</mongo.reactivestreams>
<mongo.reactivestreams>1.11.0</mongo.reactivestreams>
<jmh.version>1.19</jmh.version>
</properties>

View File

@@ -123,6 +123,11 @@ class AsyncInputStreamAdapter implements AsyncInputStream {
});
}
/*
* (non-Javadoc)
* @see com.mongodb.reactivestreams.client.gridfs.AsyncInputStream#skip(long)
*/
@Override
public Publisher<Long> skip(long bytesToSkip) {
throw new UnsupportedOperationException("Skip is currently not implemented");
}