IceBox._ServiceObserverOperationsNC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icebox-compat Show documentation
Show all versions of icebox-compat Show documentation
IceBox is an easy-to-use framework for Ice application services
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.4
//
//
//
// Generated from file `IceBox.ice'
//
// Warning: do not edit this file.
//
//
//
package IceBox;
/**
* An Observer interface implemented by admin clients interested in the status
* of services.
*
* @see ServiceManager
*
**/
public interface _ServiceObserverOperationsNC
{
/**
* Receives the names of the services that were started.
*
* @param services The names of the services.
*
**/
void servicesStarted(String[] services);
/**
* Receives the names of the services that were stopped.
*
* @param services The names of the services.
*
**/
void servicesStopped(String[] services);
}