1 package com.atlassian.messagequeue.internal.lifecycle;
2
3 /**
4 * A listener for instance lifecycle notifications.
5 */
6 public interface InstanceLifecycleListener {
7
8 /**
9 * Called on an instance lifecycle notification.
10 *
11 * @param instanceLifecycleContext the instance lifecycle context
12 */
13 void onInstanceLifecycleNotification(InstanceLifecycleContext instanceLifecycleContext);
14 }