blob: 8c8146f6b7264ad040960a988fd1abb512b2dec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef INSTRUMENTATION_I_H
#define INSTRUMENTATION_I_H
void testRetryCount(int);
void testFailureCount(int);
void testInvocationCount(int);
void initCounts();
Ice::Instrumentation::CommunicatorObserverPtr getObserver();
#endif
|