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

IceBox.Service 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 `IceBox.ice'
//
// Warning: do not edit this file.
//
// 
//

package IceBox;

/**
 * An application service managed by a {@link ServiceManager}.
 *
 **/
public interface Service
{
    /**
     * Start the service. The given communicator is created by the
     * {@link ServiceManager} for use by the service. This communicator may
     * also be used by other services, depending on the service
     * configuration.
     *
     * 

The {@link ServiceManager} owns this communicator, and is * responsible for destroying it. * * @param name The service's name, as determined by the * configuration. * * @param communicator A communicator for use by the service. * * @param args The service arguments that were not converted into * properties. * * @throws FailureException Raised if {@link #start} failed. * **/ void start(String name, Ice.Communicator communicator, String[] args); /** * Stop the service. * **/ void stop(); public static final long serialVersionUID = -7506042424620814118L; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy