Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Instrumentation.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 
14 #include <Ice/EndpointF.ice>
15 #include <Ice/ConnectionF.ice>
16 #include <Ice/Current.ice>
17 
18 ["objc:prefix:ICE"]
19 module Ice
20 {
21 
28 ["objc:prefix:ICEINSTRUMENTATION"]
29 module Instrumentation
30 {
31 
38 local interface Observer
39 {
46  void attach();
47 
54  void detach();
55 
63  void failed(string exceptionName);
64 };
65 
72 local enum ThreadState
73 {
80 
89 
98 
106 };
107 
115 local interface ThreadObserver extends Observer
116 {
126  void stateChanged(ThreadState oldState, ThreadState newState);
127 };
128 
134 local enum ConnectionState
135 {
142 
149 
156 
164 
172 };
173 
174 
180 local interface ConnectionObserver extends Observer
181 {
189  void sentBytes(int num);
190 
198  void receivedBytes(int num);
199 };
200 
206 local interface DispatchObserver extends Observer
207 {
213  void userException();
214 
222  void reply(int size);
223 };
224 
231 local interface ChildInvocationObserver extends Observer
232 {
240  void reply(int size);
241 };
242 
243 
251 {
252 };
253 
261 {
262 };
263 
272 local interface InvocationObserver extends Observer
273 {
279  void retried();
280 
286  void userException();
287 
303  RemoteObserver getRemoteObserver(ConnectionInfo con, Endpoint endpt, int requestId, int size);
304 
318  CollocatedObserver getCollocatedObserver(ObjectAdapter adapter, int requestId, int size);
319 };
320 
336 local interface ObserverUpdater
337 {
349  void updateConnectionObservers();
350 
362  void updateThreadObservers();
363 };
364 
375 local interface CommunicatorObserver
376 {
391  Observer getConnectionEstablishmentObserver(Endpoint endpt, string connector);
392 
407  Observer getEndpointLookupObserver(Endpoint endpt);
408 
429 
449  ThreadObserver getThreadObserver(string parent, string id, ThreadState s, ThreadObserver o);
450 
466  InvocationObserver getInvocationObserver(Object* prx, string operation, Context ctx);
467 
483  DispatchObserver getDispatchObserver(Current c, int size);
484 
495  void setObserverUpdater(ObserverUpdater updater);
496 };
497 
498 };
499 
500 };
501 
Information about the current method invocation for servers.
Definition: Current.ice:91
The connection is holding the reception of new messages.
Definition: Instrumentation.ice:148
The invocation observer to instrument invocations on proxies.
Definition: Instrumentation.ice:272
The collocated observer to instrument invocations that are collocated.
Definition: Instrumentation.ice:260
The user-level interface to an endpoint.
Definition: Endpoint.ice:107
The Ice core library.
Definition: BuiltinSequences.ice:15
The connection is being gracefully shutdown and waits for the peer to close its end of the connection...
Definition: Instrumentation.ice:163
The thread is idle.
Definition: Instrumentation.ice:79
The connection observer interface to instrument Ice connections.
Definition: Instrumentation.ice:180
The thread is in use performing reads or writes for Ice connections.
Definition: Instrumentation.ice:88
The thread is performing other internal activities (DNS lookups, timer callbacks, etc)...
Definition: Instrumentation.ice:105
The connection is being validated.
Definition: Instrumentation.ice:141
ThreadState
The thread state enumeration keeps track of the different possible states of Ice threads.
Definition: Instrumentation.ice:72
The connection is closed and waits for potential dispatch to be finished before being destroyed and d...
Definition: Instrumentation.ice:171
The dispatch observer to instrument servant dispatch.
Definition: Instrumentation.ice:206
The child invocation observer to instrument remote or collocated invocations.
Definition: Instrumentation.ice:231
Base class providing access to the connection details.
Definition: Connection.ice:27
ConnectionState
The state of an Ice connection.
Definition: Instrumentation.ice:134
The thread is calling user code (servant implementation, AMI callbacks).
Definition: Instrumentation.ice:97
The thread observer interface to instrument Ice threads.
Definition: Instrumentation.ice:115
The remote observer to instrument invocations that are sent over the wire.
Definition: Instrumentation.ice:250
The observer updater interface.
Definition: Instrumentation.ice:336
The communicator observer interface used by the Ice run-time to obtain and update observers for its o...
Definition: Instrumentation.ice:375
The connection is active and can send and receive messages.
Definition: Instrumentation.ice:155
The object observer interface used by instrumented objects to notify the observer of their existence...
Definition: Instrumentation.ice:38
The object adapter provides an up-call interface from the Ice run time to the implementation of Ice o...
Definition: ObjectAdapter.ice:38
dictionary< string, string > Context
A request context.
Definition: Current.ice:31