Package | Description |
---|---|
org.openspaces.admin.application.deploy | |
org.openspaces.admin.gsa |
Support for managing of Grid Service Agent(s) through the Admin API.
|
org.openspaces.admin.gsm |
Support for managing of Grid Service Manager(s) through the Admin API.
|
org.openspaces.admin.gsm.events |
Support for managing of Elastic Service Manager events through the Admin API.
|
org.openspaces.admin.internal.gsa |
Internally Used.
|
org.openspaces.admin.internal.gsm |
Internally Used.
|
org.openspaces.admin.internal.gsm.events |
Internally Used.
|
org.openspaces.admin.internal.pu |
Internally Used.
|
org.openspaces.admin.internal.vm |
Internally Used.
|
org.openspaces.admin.pu |
Support for managing of Processing Unit(s) through the Admin API.
|
org.openspaces.admin.pu.events |
Support for managing of Processing Unit events through the Admin API.
|
org.openspaces.admin.samples | |
org.openspaces.admin.vm |
Support for managing of Virtual Machine(s) through the Admin API.
|
Modifier and Type | Method and Description |
---|---|
protected GridServiceManager |
AbstractApplicationCommand.waitForGridServiceManager() |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
GridServiceAgent.startGridServiceAndWait(GridServiceManagerOptions options)
Starts a
GridServiceManager based on the provided options
and waits indefinitely until it is discovered by the admin, which is then returned. |
GridServiceManager |
GridServiceAgent.startGridServiceAndWait(GridServiceManagerOptions options,
long timeout,
TimeUnit timeUnit)
Starts a
GridServiceManager based on the provided options
and waits for the given timeout (in time unit) until it is discovered by the admin, which is
then returned. |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
GridServiceManagers.getManagerByUID(String uid)
Returns a manager based on its uid.
|
GridServiceManager[] |
GridServiceManagers.getManagers()
Returns all the currently discovered managers.
|
GridServiceManager |
GridServiceManagers.waitForActiveManager() |
GridServiceManager |
GridServiceManagers.waitForActiveManager(long timeout,
TimeUnit timeUnit) |
GridServiceManager |
GridServiceManagers.waitForAtLeastOne()
Waits indefinitely till at least one GSM is discovered and returns it.
|
GridServiceManager |
GridServiceManagers.waitForAtLeastOne(long timeout,
TimeUnit timeUnit)
Waits for the given timeout (in time unit) till at least one GSM is discovered and returns
it.
|
Modifier and Type | Method and Description |
---|---|
Map<String,GridServiceManager> |
GridServiceManagers.getUids()
Returns a map of grid service manager with the key as the uid.
|
Modifier and Type | Method and Description |
---|---|
void |
GridServiceManagerAddedEventListener.gridServiceManagerAdded(GridServiceManager gridServiceManager)
Called when a grid service manager is added.
|
void |
GridServiceManagerRemovedEventListener.gridServiceManagerRemoved(GridServiceManager gridServiceManager)
Called when a grid service manager is removed.
|
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
DefaultGridServiceAgent.startGridServiceAndWait(GridServiceManagerOptions options) |
GridServiceManager |
DefaultGridServiceAgent.startGridServiceAndWait(GridServiceManagerOptions options,
long timeout,
TimeUnit timeUnit) |
Modifier and Type | Interface and Description |
---|---|
interface |
InternalGridServiceManager |
Modifier and Type | Class and Description |
---|---|
class |
DefaultGridServiceManager |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
DefaultGridServiceManagers.getManagerByUID(String uid) |
GridServiceManager[] |
DefaultGridServiceManagers.getManagers() |
GridServiceManager[] |
InternalGridServiceManagers.getManagersNonFiltered() |
GridServiceManager[] |
DefaultGridServiceManagers.getManagersNonFiltered() |
GridServiceManager |
DefaultGridServiceManagers.waitForActiveManager() |
GridServiceManager |
DefaultGridServiceManagers.waitForActiveManager(long timeout,
TimeUnit timeUnit) |
GridServiceManager |
DefaultGridServiceManagers.waitForAtLeastOne() |
GridServiceManager |
DefaultGridServiceManagers.waitForAtLeastOne(long timeout,
TimeUnit timeUnit) |
Modifier and Type | Method and Description |
---|---|
Map<String,GridServiceManager> |
DefaultGridServiceManagers.getUids() |
Iterator<GridServiceManager> |
DefaultGridServiceManagers.iterator() |
Modifier and Type | Method and Description |
---|---|
void |
ClosureGridServiceManagerAddedEventListener.gridServiceManagerAdded(GridServiceManager gridServiceManager) |
void |
DefaultGridServiceManagerAddedEventManager.gridServiceManagerAdded(GridServiceManager gridServiceManager) |
void |
DefaultGridServiceManagerRemovedEventManager.gridServiceManagerRemoved(GridServiceManager GridServiceManager) |
void |
ClosureGridServiceManagerRemovedEventListener.gridServiceManagerRemoved(GridServiceManager gridServiceManager) |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
DefaultProcessingUnit.getBackupGridServiceManager(String gridServiceManagerUID) |
GridServiceManager[] |
DefaultProcessingUnit.getBackupGridServiceManagers() |
GridServiceManager |
DefaultProcessingUnit.getManagingGridServiceManager() |
GridServiceManager |
DefaultProcessingUnit.waitForManaged() |
GridServiceManager |
DefaultProcessingUnit.waitForManaged(long timeout,
TimeUnit timeUnit) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultProcessingUnit.addBackupGridServiceManager(GridServiceManager backupGridServiceManager) |
void |
InternalProcessingUnit.addBackupGridServiceManager(GridServiceManager backupGridServiceManager) |
void |
DefaultProcessingUnit.addManagingGridServiceManager(GridServiceManager gridServiceManager) |
void |
InternalProcessingUnit.addManagingGridServiceManager(GridServiceManager gridServiceManager) |
void |
DefaultProcessingUnit.setManagingGridServiceManager(GridServiceManager gridServiceManager) |
void |
InternalProcessingUnit.setManagingGridServiceManager(GridServiceManager gridServiceManager) |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
DefaultVirtualMachine.getGridServiceManager() |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
ProcessingUnit.getBackupGridServiceManager(String gridServiceManagerUID) |
GridServiceManager[] |
ProcessingUnit.getBackupGridServiceManagers() |
GridServiceManager |
ProcessingUnit.getManagingGridServiceManager() |
GridServiceManager |
ProcessingUnit.waitForManaged()
Waits till there is a managing
GridServiceManager for the
processing unit. |
GridServiceManager |
ProcessingUnit.waitForManaged(long timeout,
TimeUnit timeUnit)
Waits till there is a managing
GridServiceManager for the
processing unit for the specified timeout. |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
BackupGridServiceManagerChangedEvent.getGridServiceManager()
Returns the backup GSM that was either added or removed for the given Processing Unit.
|
GridServiceManager |
ManagingGridServiceManagerChangedEvent.getNewGridServiceManager()
Returns the new GSM that is associated with the processing unit.
|
GridServiceManager |
ManagingGridServiceManagerChangedEvent.getPreviousGridServiceManager()
Returns the previous GSM that is associated with the processing unit.
|
Constructor and Description |
---|
BackupGridServiceManagerChangedEvent(ProcessingUnit processingUnit,
BackupGridServiceManagerChangedEvent.Type type,
GridServiceManager gridServiceManager) |
ManagingGridServiceManagerChangedEvent(ProcessingUnit processingUnit,
GridServiceManager newGridServiceManager,
GridServiceManager previousGridServiceManager) |
Modifier and Type | Method and Description |
---|---|
void |
TestEventSampler.gridServiceManagerAdded(GridServiceManager gridServiceManager) |
void |
TestEventSampler.gridServiceManagerRemoved(GridServiceManager gridServiceManager) |
Modifier and Type | Method and Description |
---|---|
GridServiceManager |
VirtualMachine.getGridServiceManager()
Returns the grid service manager started within this virtual machine.
|
Copyright © GigaSpaces.