All Downloads are FREE. Search and download functionalities are using the official Maven repository.

IceGrid._RegistryObserverOperations Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
//
// 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy