Interface TenantListener

All Known Implementing Classes:
DefaultIntegrationTenantLifecycle, DefaultSolrClientPool.SolrClientPoolTenantListener, DefaultTenantLifecycle, JMXBeanLoader, RuntimeConfigUpdateListener

public interface TenantListener
By implementing this interface the listener instance can be notified about start up and shut down of a Tenant . For getting notifications you have to call the Registry.registerTenantListener(TenantListener) method usually at constructor of your manager class.
Since:
3.1-u1
  • Method Details

    • afterTenantStartUp

      void afterTenantStartUp(Tenant tenant)
      Will be called if a tenant has successfully started.
      Parameters:
      tenant - the tenant which was started
    • beforeTenantShutDown

      void beforeTenantShutDown(Tenant tenant)
      Will be called if a tenant is about to shut down.
      Parameters:
      tenant - tenant which will be shut down
    • afterSetActivateSession

      void afterSetActivateSession(Tenant tenant)
    • beforeUnsetActivateSession

      void beforeUnsetActivateSession(Tenant tenant)