public class

BreakpointReadyServletOutputStream

extends ServletOutputStream
java.lang.Object
   ↳ java.io.OutputStream
     ↳ javax.servlet.ServletOutputStream
       ↳ com.atlassian.jira.web.debug.BreakpointReadyServletOutputStream

Class Overview

This should only ve used in dev mode.

Summary

Public Constructors
BreakpointReadyServletOutputStream(ServletOutputStream delegate)
Public Methods
void close()
void flush()
void write(byte[] b)
void write(byte[] b, int off, int len)
void write(int b)
This is the guy that is always called at the very bottom of the calls
[Expand]
Inherited Methods
From class javax.servlet.ServletOutputStream
From class java.io.OutputStream
From class java.lang.Object
From interface java.io.Closeable
From interface java.io.Flushable
From interface java.lang.AutoCloseable

Public Constructors

public BreakpointReadyServletOutputStream (ServletOutputStream delegate)

Public Methods

public void close ()

Throws
IOException

public void flush ()

Throws
IOException

public void write (byte[] b)

Throws
IOException

public void write (byte[] b, int off, int len)

Throws
IOException

public void write (int b)

This is the guy that is always called at the very bottom of the calls

Parameters
b something to write
Throws
IOException