⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 session.ice

📁 ICE-3.2 一个开源的中间件
💻 ICE
字号:
// **********************************************************************//// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.//// This copy of Ice is licensed to you under the terms described in the// ICE_LICENSE file included in this distribution.//// **********************************************************************#ifndef SESSION_ICE#define SESSION_ICEmodule Demo{interface Hello{    ["cpp:const"] idempotent void sayHello();};//// The session object. This is used to create per-session objects on// behalf of the client. If the session is not refreshed on a periodic// basis, it will be automatically destroyed.//interface Session{    //    // Create a new per-session hello object. The created object will    // be automatically destroyed when the session is destroyed.    //    Hello* createHello();    //    // Refresh a session. If a session is not refreshed on a regular    // basis by the client, it will be automatically destroyed.    //    idempotent void refresh();    ["cpp:const"] idempotent string getName();    //    // Destroy the session explicitly.    //    void destroy();};interface SessionFactory{    //    // Create a session with the given name. Note that the name is    // only used for diagnostic purposes. It is not used as unique    // session id.    //    Session* create(string name);    idempotent void shutdown();};};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -