a75f496e76
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3912 542714f4-19e9-0310-aa3c-eee0fc999fb1
16 lines
369 B
ActionScript
16 lines
369 B
ActionScript
package com.threerings.io {
|
|
|
|
/**
|
|
* Note: all Streamable instances should have a constructor that copes
|
|
* with no arguments.
|
|
*/
|
|
public interface Streamable
|
|
{
|
|
function writeObject (out :ObjectOutputStream) :void;
|
|
//throws IOError;
|
|
|
|
function readObject (ins :ObjectInputStream) :void;
|
|
//throws IOError; /** ClassCastException equivalent. */
|
|
}
|
|
}
|