Interface ReactiveFindFromReplicasByIdOperation.TerminatingFindFromReplicasById<T>

All Superinterfaces:
AnyIdReactive<T>
All Known Subinterfaces:
ReactiveFindFromReplicasByIdOperation.FindFromReplicasByIdInCollection<T>, ReactiveFindFromReplicasByIdOperation.FindFromReplicasByIdInScope<T>, ReactiveFindFromReplicasByIdOperation.FindFromReplicasByIdWithOptions<T>, ReactiveFindFromReplicasByIdOperation.ReactiveFindFromReplicasById<T>
Enclosing interface:
ReactiveFindFromReplicasByIdOperation

public static interface ReactiveFindFromReplicasByIdOperation.TerminatingFindFromReplicasById<T> extends AnyIdReactive<T>
Terminating operations invoking the actual get execution.
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<T>
    any(String id)
    Finds one document based on the given ID.
    reactor.core.publisher.Flux<? extends T>
    Finds a list of documents based on the given IDs.
  • Method Details

    • any

      reactor.core.publisher.Mono<T> any(String id)
      Finds one document based on the given ID.
      Specified by:
      any in interface AnyIdReactive<T>
      Parameters:
      id - the document ID.
      Returns:
      the entity if found.
    • any

      reactor.core.publisher.Flux<? extends T> any(Collection<String> ids)
      Finds a list of documents based on the given IDs.
      Specified by:
      any in interface AnyIdReactive<T>
      Parameters:
      ids - the document ID ids.
      Returns:
      the list of found entities.