Interface DatabaseProcedure<C,T>

Type Parameters:
C - the connection type required by this procedure
T - the procedure parameter type

public interface DatabaseProcedure<C,T>
A database procedure
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(C connection, @Nullable T parameter)
    Executes this procedure using the given connection
  • Method Details

    • execute

      void execute(C connection, @Nullable T parameter)
      Executes this procedure using the given connection
      Parameters:
      connection - the connection to use
      parameter - the procedure parameter, if any