Class BytesMessageOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.axis2.transport.jms.iowrappers.BytesMessageOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class BytesMessageOutputStream extends OutputStream
-
-
Constructor Summary
Constructors Constructor Description BytesMessageOutputStream(javax.jms.BytesMessage message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
Methods inherited from class java.io.OutputStream
close, flush, nullOutputStream
-
-
-
-
Method Detail
-
write
public void write(int b) throws JMSExceptionWrapper
- Specified by:
write
in classOutputStream
- Throws:
JMSExceptionWrapper
-
write
public void write(byte[] b, int off, int len) throws JMSExceptionWrapper
- Overrides:
write
in classOutputStream
- Throws:
JMSExceptionWrapper
-
write
public void write(byte[] b) throws JMSExceptionWrapper
- Overrides:
write
in classOutputStream
- Throws:
JMSExceptionWrapper
-
-