Interface SpaceInstanceAddedEventManager
- All Known Subinterfaces:
InternalSpaceInstanceAddedEventManager
- All Known Implementing Classes:
DefaultSpaceInstanceAddedEventManager
public interface SpaceInstanceAddedEventManager
An event manager allowing to add and remove
SpaceInstanceAddedEventListeners.- Author:
- kimchy
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(SpaceInstanceAddedEventListener eventListener) Adds an event listener.voidadd(SpaceInstanceAddedEventListener eventListener, boolean includeExisting) Adds an event listener allowing to control using theincludeExistingif events will be fired for existing space instances as well.voidremove(SpaceInstanceAddedEventListener eventListener) Removes the event listener.
-
Method Details
-
add
Adds an event listener. Note, the event will be called for currently discoveredSpaceInstances. -
add
Adds an event listener allowing to control using theincludeExistingif events will be fired for existing space instances as well. -
remove
Removes the event listener.
-