Arena  1.0
A content management system
 All Classes Files Functions Variables Pages
Library.IO.Streams.IsStreamable Class Reference

This class defines the methods which must be implemented by classes that are capable of streaming their instance data to and from an arbitrary stream. More...

+ Inheritance diagram for Library.IO.Streams.IsStreamable:

Public Member Functions

def writeTo
 Write class instance data to the specified stream. More...
 
def readFrom
 Read class instance data from the specified stream. More...
 

Detailed Description

This class defines the methods which must be implemented by classes that are capable of streaming their instance data to and from an arbitrary stream.

Member Function Documentation

def Library.IO.Streams.IsStreamable.readFrom (   Self,
  Source 
)

Read class instance data from the specified stream.

The return value of this function should indicate how much information was actually read from the destination stream (i.e., how many bytes were read). """

def Library.IO.Streams.IsStreamable.writeTo (   Self,
  Dest 
)

Write class instance data to the specified stream.

The return value of this function should indicate how much information was actually written to the destination stream (i.e., how many bytes were written).


The documentation for this class was generated from the following file: