View Javadoc
1   package com.atlassian.activeobjects.spi;
2   
3   /**
4    * <p>This is the event that products can publish via their own EventPublisher to tell AO
5    * to hot restart itself.</p>
6    * <p>The effect of this will mainly be that AO will reconnect to the database and run the (idempotent) upgrade tasks
7    * again.</p>
8    */
9   public final class HotRestartEvent {
10      public static final HotRestartEvent INSTANCE = new HotRestartEvent();
11  
12      private HotRestartEvent() {
13      }
14  }