/driver-reactive-streams/src/main/com/mongodb/reactivestreams/client/internal/GridFSFindPublisherImpl.java

http://github.com/mongodb/mongo-java-driver · Java · 96 lines · 64 code · 17 blank · 15 comment · 0 complexity · e43e496b4ebea7fe74e82bc3c94f3a10 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.reactivestreams.client.internal;
  17. import com.mongodb.client.gridfs.model.GridFSFile;
  18. import com.mongodb.client.model.Collation;
  19. import com.mongodb.internal.async.client.gridfs.AsyncGridFSFindIterable;
  20. import com.mongodb.reactivestreams.client.gridfs.GridFSFindPublisher;
  21. import org.bson.conversions.Bson;
  22. import org.reactivestreams.Publisher;
  23. import org.reactivestreams.Subscriber;
  24. import java.util.concurrent.TimeUnit;
  25. import static com.mongodb.assertions.Assertions.notNull;
  26. final class GridFSFindPublisherImpl implements GridFSFindPublisher {
  27. private final AsyncGridFSFindIterable wrapped;
  28. GridFSFindPublisherImpl(final AsyncGridFSFindIterable wrapped) {
  29. this.wrapped = notNull("GridFSFindIterable", wrapped);
  30. }
  31. @Override
  32. public Publisher<GridFSFile> first() {
  33. return Publishers.publish(wrapped::first);
  34. }
  35. @Override
  36. public GridFSFindPublisher sort(final Bson sort) {
  37. wrapped.sort(sort);
  38. return this;
  39. }
  40. @Override
  41. public GridFSFindPublisher skip(final int skip) {
  42. wrapped.skip(skip);
  43. return this;
  44. }
  45. @Override
  46. public GridFSFindPublisher limit(final int limit) {
  47. wrapped.limit(limit);
  48. return this;
  49. }
  50. @Override
  51. public GridFSFindPublisher filter(final Bson filter) {
  52. wrapped.filter(filter);
  53. return this;
  54. }
  55. @Override
  56. public GridFSFindPublisher maxTime(final long maxTime, final TimeUnit timeUnit) {
  57. wrapped.maxTime(maxTime, timeUnit);
  58. return this;
  59. }
  60. @Override
  61. public GridFSFindPublisher noCursorTimeout(final boolean noCursorTimeout) {
  62. wrapped.noCursorTimeout(noCursorTimeout);
  63. return this;
  64. }
  65. @Override
  66. public GridFSFindPublisher collation(final Collation collation) {
  67. wrapped.collation(collation);
  68. return this;
  69. }
  70. @Override
  71. public GridFSFindPublisher batchSize(final int batchSize) {
  72. wrapped.batchSize(batchSize);
  73. return this;
  74. }
  75. @Override
  76. public void subscribe(final Subscriber<? super GridFSFile> s) {
  77. Publishers.publish(wrapped).subscribe(s);
  78. }
  79. }