Interface ReactivePanacheUpdate

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      io.smallrye.mutiny.Uni<Long> all()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Execute an update on all documents with the update document.
      io.smallrye.mutiny.Uni<Long> where​(String query, Parameters params)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Execute the update query with the update document.
      io.smallrye.mutiny.Uni<Long> where​(String query, Object... params)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Execute the update query with the update document.
      io.smallrye.mutiny.Uni<Long> where​(String query, Map<String,​Object> params)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Execute the update query with the update document.
    • Method Detail

      • where

        io.smallrye.mutiny.Uni<Long> where​(String query,
                                           Object... params)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Execute the update query with the update document.
        Parameters:
        query - a query string
        params - params optional sequence of indexed parameters
        Returns:
        the number of entities updated.
      • where

        io.smallrye.mutiny.Uni<Long> where​(String query,
                                           Map<String,​Object> params)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Execute the update query with the update document.
        Parameters:
        query - a query string
        params - Map of named parameters
        Returns:
        the number of entities updated.
      • where

        io.smallrye.mutiny.Uni<Long> where​(String query,
                                           Parameters params)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Execute the update query with the update document.
        Parameters:
        query - a query string
        params - Parameters of named parameters
        Returns:
        the number of entities updated.
      • all

        io.smallrye.mutiny.Uni<Long> all()
        Deprecated, for removal: This API element is subject to removal in a future version.
        Execute an update on all documents with the update document.
        Returns:
        the number of entities updated.