Package org.openspaces.admin.vm.events
Interface VirtualMachineAddedEventManager
- All Known Subinterfaces:
InternalVirtualMachineAddedEventManager
- All Known Implementing Classes:
DefaultVirtualMachineAddedEventManager
public interface VirtualMachineAddedEventManager
An event manager allowing to remove and add
VirtualMachineAddedEventListeners.- Author:
- kimchy
-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(VirtualMachineAddedEventListener eventListener) Add the event listener.voidadd(VirtualMachineAddedEventListener eventListener, boolean includeExisting) Add the event listener.voidremove(VirtualMachineAddedEventListener eventListener) Removes the event listener.
-
Method Details
-
add
Add the event listener. Note, the add callback will be called for currently discovered virtual machines as well. -
add
Add the event listener. Allows to control if events will be raised for existing virtual machines as well. -
remove
Removes the event listener.
-