DATAMONGO-2354 - Change visibility of FindPublisherPreparer.

The FindPublisherPreparer is used in an protected method of ReactiveMongoTemplate and needs to be public to allow overriding.

Original Pull Request: #784
This commit is contained in:
kostya05983
2019-08-30 01:10:18 +07:00
committed by Christoph Strobl
parent 0d22d831f8
commit f3a7d6a20e

View File

@@ -21,8 +21,9 @@ import com.mongodb.reactivestreams.client.FindPublisher;
* Simple callback interface to allow customization of a {@link FindPublisher}.
*
* @author Mark Paluch
* @author Konstantin Volivach
*/
interface FindPublisherPreparer {
public interface FindPublisherPreparer {
/**
* Prepare the given cursor (apply limits, skips and so on). Returns the prepared cursor.