blob: 7a5526fe0f3efcbbfac9ed6552d56c38b316af4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#import <TimeoutTest.h>
@interface TimeoutI : TestTimeoutTimeout<TestTimeoutTimeout>
-(void) op:(ICECurrent *)current;
-(void) sendData:(TestTimeoutMutableByteSeq *)seq current:(ICECurrent *)current;
-(void) sleep:(ICEInt)to current:(ICECurrent *)current;
@end
@interface TimeoutControllerI : TestTimeoutController<TestTimeoutController>
{
id<ICEObjectAdapter> adapter_;
}
+(id) controller:(id<ICEObjectAdapter>)adapter;
-(void) holdAdapter:(ICEInt)to current:(ICECurrent *)current;
-(void) resumeAdapter:(ICECurrent *)current;
-(void) shutdown:(ICECurrent *)current;
@end
|