类 HessianDebugInputStream
- java.lang.Object
-
- java.io.InputStream
-
- com.alibaba.com.caucho.hessian.io.HessianDebugInputStream
-
- 所有已实现的接口:
Closeable
,AutoCloseable
public class HessianDebugInputStream extends InputStream
Debugging input stream for Hessian requests.
-
-
构造器概要
构造器 构造器 说明 HessianDebugInputStream(InputStream is, PrintWriter dbg)
Creates an uninitialized Hessian input stream.HessianDebugInputStream(InputStream is, Logger log, Level level)
Creates an uninitialized Hessian input stream.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 void
close()
closes the stream.int
read()
Reads a character.void
startTop2()
-
从类继承的方法 java.io.InputStream
available, mark, markSupported, nullInputStream, read, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
构造器详细资料
-
HessianDebugInputStream
public HessianDebugInputStream(InputStream is, PrintWriter dbg)
Creates an uninitialized Hessian input stream.
-
HessianDebugInputStream
public HessianDebugInputStream(InputStream is, Logger log, Level level)
Creates an uninitialized Hessian input stream.
-
-
方法详细资料
-
startTop2
public void startTop2()
-
read
public int read() throws IOException
Reads a character.- 指定者:
read
在类中InputStream
- 抛出:
IOException
-
close
public void close() throws IOException
closes the stream.- 指定者:
close
在接口中AutoCloseable
- 指定者:
close
在接口中Closeable
- 覆盖:
close
在类中InputStream
- 抛出:
IOException
-
-