Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Router.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", "js:ice-build"]]
13 
14 #include <Ice/BuiltinSequences.ice>
15 
16 ["objc:prefix:ICE"]
17 module Ice
18 {
19 
27 interface Router
28 {
40  ["nonmutating", "cpp:const"] idempotent Object* getClientProxy();
41 
50  ["nonmutating", "cpp:const"] idempotent Object* getServerProxy();
51 
61  idempotent ObjectProxySeq addProxies(ObjectProxySeq proxies);
62 };
63 
73 interface RouterFinder
74 {
83  Router* getRouter();
84 };
85 
86 };
87 
The Ice core library.
Definition: BuiltinSequences.ice:15
sequence< Object > ObjectProxySeq
A sequence of object proxies.
Definition: BuiltinSequences.ice:46
The Ice router interface.
Definition: Router.ice:27
This inferface should be implemented by services implementing the Ice::Router interface.
Definition: Router.ice:73