Package org.openspaces.admin.zone
Interface Zone
- All Superinterfaces:
DumpProvider
- All Known Subinterfaces:
InternalZone
- All Known Implementing Classes:
DefaultZone
- Author:
- kimchy
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddLifecycleListener(SpaceInstanceLifecycleEventListener eventListener) Allows to add aSpaceInstanceLifecycleEventListener.voidaddProcessingUnitInstanceLifecycleEventListener(ProcessingUnitInstanceLifecycleEventListener eventListener) Allows to add aProcessingUnitInstanceLifecycleEventListener.Returns the grid service agents running within the zone.Returns the grid service containers running within the zone.Returns the grid service managers running within the zone.Returns the lookup services that are running within the zone.Returns the machines running within the zone.getName()Returns name of the zone.Returns the processing unit instance added event manager allowing to add and removeProcessingUnitInstanceAddedEventListeners.Returns the processing unit instance removed event manager allowing to add and removeProcessingUnitInstanceRemovedEventListeners.Returns all the processing unit instances running within the zone.Returns the space instance added event manager allowing to add and removeSpaceInstanceAddedEventListeners.Returns the space instance removed event manager allowing to add and removeSpaceInstanceRemovedEventListeners.Returns all the space instances running within the zone.Returns the transports "running" within the zone.Returns the virtual machines running within the zone.booleanReturnstrueif there are grid components.voidremoveLifecycleListener(SpaceInstanceLifecycleEventListener eventListener) Allows to remove aSpaceInstanceLifecycleEventListener.voidremoveProcessingUnitInstanceLifecycleEventListener(ProcessingUnitInstanceLifecycleEventListener eventListener) Allows to remove aProcessingUnitInstanceLifecycleEventListener.Methods inherited from interface org.openspaces.admin.dump.DumpProvider
generateDump, generateDump
-
Method Details
-
getName
String getName()Returns name of the zone. -
getMachines
Machines getMachines()Returns the machines running within the zone. -
getLookupServices
LookupServices getLookupServices()Returns the lookup services that are running within the zone. -
getGridServiceAgents
GridServiceAgents getGridServiceAgents()Returns the grid service agents running within the zone. -
getGridServiceManagers
GridServiceManagers getGridServiceManagers()Returns the grid service managers running within the zone. -
getGridServiceContainers
GridServiceContainers getGridServiceContainers()Returns the grid service containers running within the zone. -
getVirtualMachines
VirtualMachines getVirtualMachines()Returns the virtual machines running within the zone. -
hasGridComponents
boolean hasGridComponents()Returnstrueif there are grid components. -
getTransports
Transports getTransports()Returns the transports "running" within the zone. -
getProcessingUnitInstances
ProcessingUnitInstance[] getProcessingUnitInstances()Returns all the processing unit instances running within the zone. -
getProcessingUnitInstanceAdded
ProcessingUnitInstanceAddedEventManager getProcessingUnitInstanceAdded()Returns the processing unit instance added event manager allowing to add and removeProcessingUnitInstanceAddedEventListeners. -
getProcessingUnitInstanceRemoved
ProcessingUnitInstanceRemovedEventManager getProcessingUnitInstanceRemoved()Returns the processing unit instance removed event manager allowing to add and removeProcessingUnitInstanceRemovedEventListeners. -
addProcessingUnitInstanceLifecycleEventListener
void addProcessingUnitInstanceLifecycleEventListener(ProcessingUnitInstanceLifecycleEventListener eventListener) Allows to add aProcessingUnitInstanceLifecycleEventListener. -
removeProcessingUnitInstanceLifecycleEventListener
void removeProcessingUnitInstanceLifecycleEventListener(ProcessingUnitInstanceLifecycleEventListener eventListener) Allows to remove aProcessingUnitInstanceLifecycleEventListener. -
getSpaceInstances
SpaceInstance[] getSpaceInstances()Returns all the space instances running within the zone. -
getSpaceInstanceAdded
SpaceInstanceAddedEventManager getSpaceInstanceAdded()Returns the space instance added event manager allowing to add and removeSpaceInstanceAddedEventListeners. -
getSpaceInstanceRemoved
SpaceInstanceRemovedEventManager getSpaceInstanceRemoved()Returns the space instance removed event manager allowing to add and removeSpaceInstanceRemovedEventListeners. -
addLifecycleListener
Allows to add aSpaceInstanceLifecycleEventListener. -
removeLifecycleListener
Allows to remove aSpaceInstanceLifecycleEventListener.
-