web_server.idl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· IDL 代码 · 共 49 行
IDL
49 行
// Web_Server.idl,v 1.3 2000/06/21 22:54:25 othman Exp
// IDL schema definition for Web server interface.
module Web_Server
{
typedef sequence<octet> Chunk_Type;
interface Content_Iterator
{
boolean next_chunk (in unsigned long offset,
out Chunk_Type chunk);
// This operation returns the next <chunk> of the
// file starting at <offset>. If there are
// no more bindings, false is returned.
void destroy ();
// This operation destroys the iterator.
};
exception Error_Result {
// Status of the <get_iterator> operation. These
// values should map onto the normal HTTP
// status values, e.g., 200 means success, 404
// means "file not found," etc.
short status;
};
struct Metadata_Type
{
string modification_date;
// Modification date.
string content_type;
// Type of content.
};
interface Iterator_Factory
{
void get_iterator (in string pathname,
out Content_Iterator contents,
out Metadata_Type metadata)
raises (Error_Result);
// This factory method returns a <Content_Iterator> that
// can be used to read the <contents> associated with
// <pathname> one ``chunk'' at a time. The <metadata>
// reports information about the <contents>.
};
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?