IceGrid._RegistryObserverOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icegrid-compat Show documentation
Show all versions of icegrid-compat Show documentation
Locate, deploy, and manage Ice servers
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Admin.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
/**
* This interface allows applications to monitor changes the state
* of the registry.
*
**/
public interface _RegistryObserverOperations
{
/**
* The registryInit
operation is called after registration of
* an observer to indicate the state of the registries.
*
* @param registries The current state of the registries.
*
* @param current The Current object for the invocation.
**/
void registryInit(RegistryInfo[] registries, Ice.Current current);
/**
* The nodeUp
operation is called to notify an observer that a node
* came up.
*
* @param node The node state.
*
* @param current The Current object for the invocation.
**/
void registryUp(RegistryInfo node, Ice.Current current);
/**
* The nodeDown
operation is called to notify an observer that a node
* went down.
*
* @param name The node name.
*
* @param current The Current object for the invocation.
**/
void registryDown(String name, Ice.Current current);
}