Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 49d18a62e1c1bd66d784ce807a3cf6effb27753a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.net4j.util.registry;

/**
 * @author Eike Stepper
 */
public interface IRegistryListener<ID, E extends IRegistryElement<ID>>
{
  public void notifyRegistryEvent(IRegistry<ID, E> registry, IRegistryListener.EventType eventType,
      E element);

  /**
   * @author Eike Stepper
   */
  public enum EventType
  {
    REGISTERED, DEREGISTERING, RESOLVED
  }
}

Back to the top