Package org.rspeer.event
Interface Registry
-
- All Known Implementing Classes:
Registry.Reflective
public interface Registry
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRegistry.Reflective
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<Subscription>getSubscriptions()List<Subscription>getSubscriptionsForEvent(Class<?> eventType)voidsubscribe(Object type)voidunsubscribe(Object type)
-
-
-
Method Detail
-
subscribe
void subscribe(Object type)
-
unsubscribe
void unsubscribe(Object type)
-
getSubscriptions
Set<Subscription> getSubscriptions()
-
getSubscriptionsForEvent
List<Subscription> getSubscriptionsForEvent(Class<?> eventType)
-
-