Java in a Nutshell Online Quick Reference for Java 1.1

INTERFACE java.io.ObjectOutput

Availability: JDK 1.1

public abstract interface ObjectOutput extends DataOutput {
   // Public Instance Methods
      public abstract void close() throws IOException;
      public abstract void flush() throws IOException;
      public abstract void write(int b) throws IOException;
      public abstract void write(byte[] b) throws IOException;
      public abstract void write(byte[] b, int off, int len) throws IOException;
      public abstract void writeObject(Object obj) throws IOException;
}
Implemented By:
ObjectOutputStream.
Passed To:
Externalizable.writeExternal(), ObjID.write(), RemoteRef.getRefClass().
Returned By:
RemoteCall.getOutputStream(), RemoteCall.getResultStream().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.