/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/mapping/event/ReactiveAfterConvertCallback.java

http://github.com/SpringSource/spring-data-mongodb · Java · 44 lines · 8 code · 4 blank · 32 comment · 0 complexity · 95b700b372d561fe723bea9159a9a2cb MD5 · raw file

  1. /*
  2. * Copyright 2020-2021 the original author or authors.
  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. * https://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 org.springframework.data.mongodb.core.mapping.event;
  17. import org.bson.Document;
  18. import org.reactivestreams.Publisher;
  19. import org.springframework.data.mapping.callback.EntityCallback;
  20. /**
  21. * Callback being invoked after a domain object is materialized from a {@link Document} when reading results.
  22. *
  23. * @author Roman Puchkovskiy
  24. * @author Mark Paluch
  25. * @since 3.0
  26. * @see org.springframework.data.mapping.callback.ReactiveEntityCallbacks
  27. */
  28. @FunctionalInterface
  29. public interface ReactiveAfterConvertCallback<T> extends EntityCallback<T> {
  30. /**
  31. * Entity callback method invoked after a domain object is materialized from a {@link Document}. Can return either the
  32. * same or a modified instance of the domain object.
  33. *
  34. * @param entity the domain object (the result of the conversion).
  35. * @param document must not be {@literal null}.
  36. * @param collection name of the collection.
  37. * @return a {@link Publisher} emitting the domain object that is the result of reading it from the {@link Document}.
  38. */
  39. Publisher<T> onAfterConvert(T entity, Document document, String collection);
  40. }