Interface AppManagementService


public interface AppManagementService
Author:
Tijs Rademakers
  • Method Details

    • getTableCounts

      Map<String,Long> getTableCounts()
      Returns a map containing {tableName, rowCount} values.
    • getTableNames

      Collection<String> getTableNames()
      Returns all relational database tables of the engine.
    • getLockManager

      LockManager getLockManager(String lockName)
      Acquire a lock manager for the requested lock. This is a stateless call, this means that every time a lock manager is requested a new one would be created. Make sure that you release the lock once you are done.
      Parameters:
      lockName - the name of the lock that is being requested
      Returns:
      the lock manager for the given lock