Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
IceBox.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc"]]
13 [["cpp:include:IceBox/Config.h"]]
14 
15 #include <Ice/BuiltinSequences.ice>
16 #include <Ice/CommunicatorF.ice>
17 #include <Ice/PropertiesF.ice>
19 
28 module IceBox
29 {
30 
39 ["cpp:ice_print"]
40 local exception FailureException
41 {
47  string reason;
48 };
49 
50 
58 {
59 };
60 
68 {
69 };
70 
78 {
79 };
80 
86 local interface Service
87 {
109  void start(string name, Ice::Communicator communicator, Ice::StringSeq args);
110 
116  void stop();
117 };
118 
119 
129 {
130  void servicesStarted(Ice::StringSeq services);
131  void servicesStopped(Ice::StringSeq services);
132 };
133 
134 
142 interface ServiceManager
143 {
151  ["nonmutating", "cpp:const"] idempotent Ice::SliceChecksumDict getSliceChecksums();
152 
160  void startService(string service)
162 
170  void stopService(string service)
172 
173 
181  void addObserver(ServiceObserver* observer);
182 
183 
189  void shutdown();
190 };
191 
192 };
193 
An Observer interface implemented by admin clients interested in the status of services.
Definition: IceBox.ice:128
This exception is thrown if a service name does not refer to an existing service. ...
Definition: IceBox.ice:77
Administers a set of Service instances.
Definition: IceBox.ice:142
This exception is a general failure notification.
Definition: IceBox.ice:40
string reason
The reason for the failure.
Definition: IceBox.ice:47
The central object in Ice.
Definition: Communicator.ice:52
IceBox is an application server specifically for Ice applications.
Definition: IceBox.ice:28
An application service managed by a ServiceManager.
Definition: IceBox.ice:86
This exception is thrown if an attempt is made to start an already-started service.
Definition: IceBox.ice:57
dictionary< string, string > SliceChecksumDict
A mapping from type IDs to Slice checksums.
Definition: SliceChecksumDict.ice:23
sequence< string > StringSeq
A sequence of strings.
Definition: BuiltinSequences.ice:40
This exception is thrown if an attempt is made to stop an already-stopped service.
Definition: IceBox.ice:67