org.apache.catalina.connector.warp
Class WarpResponse.Stream

java.lang.Object
  extended byjava.io.OutputStream
      extended byorg.apache.catalina.connector.warp.WarpResponse.Stream
Enclosing class:
WarpResponse

protected class WarpResponse.Stream
extends java.io.OutputStream

The OutputStream that will handle all response body transmission.


Constructor Summary
protected WarpResponse.Stream(WarpResponse response)
          Construct a new instance of a WarpResponse.Stream associated with a parent WarpResponse.
 
Method Summary
 void close()
          Flush this WarpResponse.Stream and close it.
 void finish()
          Flush this WarpResponse.Stream and close it.
 void flush()
          Flush the current packet to the WARP client.
 void recycle()
          Recycle this WarpResponse.Stream instance.
 void write(int b)
          Write one byte of data to the WarpPacket nested within this WarpResponse.Stream.
 
Methods inherited from class java.io.OutputStream
write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WarpResponse.Stream

protected WarpResponse.Stream(WarpResponse response)
Construct a new instance of a WarpResponse.Stream associated with a parent WarpResponse.

Method Detail

write

public void write(int b)
           throws java.io.IOException
Write one byte of data to the WarpPacket nested within this WarpResponse.Stream. All data is buffered until the flush() or close() method is not called.

Throws:
java.io.IOException

flush

public void flush()
           throws java.io.IOException
Flush the current packet to the WARP client.

Throws:
java.io.IOException

close

public void close()
           throws java.io.IOException
Flush this WarpResponse.Stream and close it.

Throws:
java.io.IOException

finish

public void finish()
            throws java.io.IOException
Flush this WarpResponse.Stream and close it.

Throws:
java.io.IOException

recycle

public void recycle()
Recycle this WarpResponse.Stream instance.



Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.