Interface ReactiveAfterConvertCallback<T>

All Superinterfaces:
EntityCallback<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ReactiveAfterConvertCallback<T> extends EntityCallback<T>
Callback being invoked after a domain object is materialized from a Document when reading results.
Since:
4.0
Author:
Roman Puchkovskiy
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    org.reactivestreams.Publisher<T>
    onAfterConvert(T entity, Document document, IndexCoordinates indexCoordinates)
    Entity callback method invoked after a domain object is materialized from a Document.
  • Method Details

    • onAfterConvert

      org.reactivestreams.Publisher<T> onAfterConvert(T entity, Document document, IndexCoordinates indexCoordinates)
      Entity callback method invoked after a domain object is materialized from a Document. Can return either the same or a modified instance of the domain object.
      Parameters:
      entity - the domain object (the result of the conversion).
      document - must not be null.
      indexCoordinates - must not be null.
      Returns:
      a Publisher emitting the domain object that is the result of reading it from the Document.