Interface ReactivePanacheUpdate

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      io.smallrye.mutiny.Uni<Long> all()
      Execute an update on all documents with the update document.
      io.smallrye.mutiny.Uni<Long> where​(String query, Parameters params)
      Execute the update query with the update document.
      io.smallrye.mutiny.Uni<Long> where​(String query, Object... params)
      Execute the update query with the update document.
      io.smallrye.mutiny.Uni<Long> where​(String query, Map<String,​Object> params)
      Execute the update query with the update document.
    • Method Detail

      • where

        io.smallrye.mutiny.Uni<Long> where​(String query,
                                           Object... params)
        Execute the update query with the update document.
        Specified by:
        where in interface ReactivePanacheUpdate
        Parameters:
        query - a query string
        params - params optional sequence of indexed parameters
        Returns:
        the number of entities updated.
      • all

        io.smallrye.mutiny.Uni<Long> all()
        Execute an update on all documents with the update document.
        Specified by:
        all in interface ReactivePanacheUpdate
        Returns:
        the number of entities updated.