Interface ExecutableFindFromReplicasByIdOperation.TerminatingFindFromReplicasById<T>

All Superinterfaces:
AnyId<T>
All Known Subinterfaces:
ExecutableFindFromReplicasByIdOperation.ExecutableFindFromReplicasById<T>, ExecutableFindFromReplicasByIdOperation.FindFromReplicasByIdInCollection<T>, ExecutableFindFromReplicasByIdOperation.FindFromReplicasByIdInScope<T>, ExecutableFindFromReplicasByIdOperation.FindFromReplicasByIdWithOptions<T>
Enclosing interface:
ExecutableFindFromReplicasByIdOperation

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

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

    • any

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

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