summaryrefslogtreecommitdiff
path: root/TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl')
-rw-r--r--TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl b/TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl
index 47838ae6d3b..055f8159476 100644
--- a/TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl
+++ b/TAO/examples/Content_Server/SMI_Iterator/Web_Server.idl
@@ -7,14 +7,14 @@ module Web_Server
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.
+ boolean next_chunk (in unsigned long offset,
+ out Chunk_Type chunk);
- void destroy ();
// This operation destroys the iterator.
+ void destroy ();
};
exception Error_Result {
@@ -27,22 +27,22 @@ module Web_Server
struct Metadata_Type
{
- string modification_date;
// Modification date.
-
- string content_type;
+ string modification_date;
+
// Type of content.
+ string content_type;
};
interface Iterator_Factory
{
+ // 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>.
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>.
};
};