Java Doc for Hessian2Output.java in  » EJB-Server-resin-3.1.5 » hessian » com » caucho » hessian » io » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » EJB Server resin 3.1.5 » hessian » com.caucho.hessian.io 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.hessian.io.AbstractHessianOutput
      com.caucho.hessian.io.Hessian2Output

Hessian2Output
public class Hessian2Output extends AbstractHessianOutput implements Hessian2Constants(Code)
Output stream for Hessian 2 requests.

Since HessianOutput does not depend on any classes other than in the JDK, it can be extracted independently into a smaller package.

HessianOutput is unbuffered, so any client needs to provide its own buffering.

 OutputStream os = ...; // from http connection
 Hessian2Output out = new Hessian11Output(os);
 String value;
 out.startCall("hello");  // start hello call
 out.writeString("arg1"); // write a string argument
 out.completeCall();      // complete the call
 

Inner Class :class BytesOutputStream extends OutputStream

Field Summary
protected  OutputStream_os
    

Constructor Summary
public  Hessian2Output(OutputStream os)
     Creates a new Hessian output stream, initialized with an underlying output stream.

Method Summary
public  booleanaddRef(Object object)
     If the object has already been written, just write its ref.
public  voidcall(String method, Object[] args)
     Writes a complete method call.
final public  voidclose()
    
public  voidcompleteCall()
     Completes.
public  voidcompleteEnvelope()
     Completes an envelope.
public  voidcompleteMessage()
    
public  voidcompleteReply()
    
final public  voidflush()
    
public  OutputStreamgetBytesOutputStream()
     Returns an output stream to write binary data.
public  booleanisCloseStreamOnClose()
    
public  voidprintLenString(String v)
    
public  voidprintString(String v)
    
public  voidprintString(String v, int strOffset, int length)
    
public  voidprintString(char[] v, int strOffset, int length)
    
public  booleanremoveRef(Object obj)
     Removes a reference.
public  booleanreplaceRef(Object oldRef, Object newRef)
     Replaces a reference from one object to another.
public  voidresetReferences()
     Resets the references for streaming.
public  voidsetCloseStreamOnClose(boolean isClose)
    
public  voidstartCall(String method)
     Starts the method call.
public  voidstartCall()
     Writes the call tag.
public  voidstartEnvelope(String method)
     Starts an envelope.
public  voidstartMessage()
    
public  voidstartReply()
    
public  voidstartStreamingCall()
     Writes the streaming call tag.
public  voidstartStreamingReply()
    
public  voidwriteBoolean(boolean value)
     Writes a boolean value to the stream.
public  voidwriteByteBufferEnd(byte[] buffer, int offset, int length)
     Writes a byte buffer to the stream.
public  voidwriteByteBufferPart(byte[] buffer, int offset, int length)
     Writes a byte buffer to the stream.
public  voidwriteByteBufferStart()
     Writes a byte buffer to the stream.
public  voidwriteBytes(byte[] buffer)
     Writes a byte array to the stream.
public  voidwriteBytes(byte[] buffer, int offset, int length)
     Writes a byte array to the stream.
public  voidwriteClassFieldLength(int len)
     Writes the tail of the class definition to the stream.
public  voidwriteDouble(double value)
     Writes a double value to the stream.
public  voidwriteFault(String code, String message, Object detail)
     Writes a fault.
public  voidwriteHeader(String name)
     Writes a header name.
public  voidwriteInt(int value)
     Writes an integer value to the stream.
public  booleanwriteListBegin(int length, String type)
     Writes the list header to the stream.
public  voidwriteListEnd()
     Writes the tail of the list to the stream.
public  voidwriteLong(long value)
     Writes a long value to the stream.
public  voidwriteMapBegin(String type)
     Writes the map header to the stream.
public  voidwriteMapEnd()
     Writes the tail of the map to the stream.
public  voidwriteMethod(String method)
     Writes the method tag.
public  voidwriteNull()
     Writes a null value to the stream.
public  voidwriteObject(Object object)
     Writes any object to the output stream.
public  intwriteObjectBegin(String type)
    
public  voidwriteObjectEnd()
     Writes the tail of the object definition to the stream.
public  voidwriteRef(int value)
     Writes a reference.
public  voidwriteRemote(String type, String url)
     Writes a remote object reference to the stream.
public  voidwriteStreamingObject(Object obj)
    
public  voidwriteString(String value)
     Writes a string value to the stream using UTF-8 encoding.
public  voidwriteString(char[] buffer, int offset, int length)
     Writes a string value to the stream using UTF-8 encoding.
public  voidwriteUTCDate(long time)
     Writes a date to the stream.

Field Detail
_os
protected OutputStream _os(Code)




Constructor Detail
Hessian2Output
public Hessian2Output(OutputStream os)(Code)
Creates a new Hessian output stream, initialized with an underlying output stream.
Parameters:
  os - the underlying output stream.




Method Detail
addRef
public boolean addRef(Object object) throws IOException(Code)
If the object has already been written, just write its ref. true if we're writing a ref.



call
public void call(String method, Object[] args) throws IOException(Code)
Writes a complete method call.



close
final public void close() throws IOException(Code)



completeCall
public void completeCall() throws IOException(Code)
Completes.
 z
 



completeEnvelope
public void completeEnvelope() throws IOException(Code)
Completes an envelope.

A successful completion will have a single value:

 z
 



completeMessage
public void completeMessage() throws IOException(Code)
Completes reading the message

A successful completion will have a single value:

 z
 



completeReply
public void completeReply() throws IOException(Code)
Completes reading the reply

A successful completion will have a single value:

 z
 



flush
final public void flush() throws IOException(Code)



getBytesOutputStream
public OutputStream getBytesOutputStream() throws IOException(Code)
Returns an output stream to write binary data.



isCloseStreamOnClose
public boolean isCloseStreamOnClose()(Code)



printLenString
public void printLenString(String v) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8 with preceeding length
Parameters:
  v - the string to print.



printString
public void printString(String v) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8
Parameters:
  v - the string to print.



printString
public void printString(String v, int strOffset, int length) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8
Parameters:
  v - the string to print.



printString
public void printString(char[] v, int strOffset, int length) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8
Parameters:
  v - the string to print.



removeRef
public boolean removeRef(Object obj) throws IOException(Code)
Removes a reference.



replaceRef
public boolean replaceRef(Object oldRef, Object newRef) throws IOException(Code)
Replaces a reference from one object to another.



resetReferences
public void resetReferences()(Code)
Resets the references for streaming.



setCloseStreamOnClose
public void setCloseStreamOnClose(boolean isClose)(Code)



startCall
public void startCall(String method) throws IOException(Code)
Starts the method call. Clients would use startCall instead of call if they wanted finer control over writing the arguments, or needed to write headers.
 c major minor
 m b16 b8 method-name
 

Parameters:
  method - the method name to call.



startCall
public void startCall() throws IOException(Code)
Writes the call tag. This would be followed by the headers and the method tag.
 c major minor
 

Parameters:
  method - the method name to call.



startEnvelope
public void startEnvelope(String method) throws IOException(Code)
Starts an envelope.
 E major minor
 m b16 b8 method-name
 

Parameters:
  method - the method name to call.



startMessage
public void startMessage() throws IOException(Code)
Starts the message

A message contains several objects followed by a 'z'

 p x02 x00
 



startReply
public void startReply() throws IOException(Code)
Starts the reply

A successful completion will have a single value:

 r
 



startStreamingCall
public void startStreamingCall() throws IOException(Code)
Writes the streaming call tag. This would be followed by the headers and the method tag.
 C major minor
 

Parameters:
  method - the method name to call.



startStreamingReply
public void startStreamingReply() throws IOException(Code)
Starts the streaming reply

A successful completion will have a single value:

 r
 



writeBoolean
public void writeBoolean(boolean value) throws IOException(Code)
Writes a boolean value to the stream. The boolean will be written with the following syntax:
 T
 F
 

Parameters:
  value - the boolean value to write.



writeByteBufferEnd
public void writeByteBufferEnd(byte[] buffer, int offset, int length) throws IOException(Code)
Writes a byte buffer to the stream.
 b b16 b18 bytes
 



writeByteBufferPart
public void writeByteBufferPart(byte[] buffer, int offset, int length) throws IOException(Code)
Writes a byte buffer to the stream.
 b b16 b18 bytes
 



writeByteBufferStart
public void writeByteBufferStart() throws IOException(Code)
Writes a byte buffer to the stream.
 



writeBytes
public void writeBytes(byte[] buffer) throws IOException(Code)
Writes a byte array to the stream. The array will be written with the following syntax:
 B b16 b18 bytes
 
If the value is null, it will be written as
 N
 

Parameters:
  value - the string value to write.



writeBytes
public void writeBytes(byte[] buffer, int offset, int length) throws IOException(Code)
Writes a byte array to the stream. The array will be written with the following syntax:
 B b16 b18 bytes
 
If the value is null, it will be written as
 N
 

Parameters:
  value - the string value to write.



writeClassFieldLength
public void writeClassFieldLength(int len) throws IOException(Code)
Writes the tail of the class definition to the stream.



writeDouble
public void writeDouble(double value) throws IOException(Code)
Writes a double value to the stream. The double will be written with the following syntax:
 D b64 b56 b48 b40 b32 b24 b16 b8
 

Parameters:
  value - the double value to write.



writeFault
public void writeFault(String code, String message, Object detail) throws IOException(Code)
Writes a fault. The fault will be written as a descriptive string followed by an object:
 f
 <string>code
 <string>the fault code
 <string>message
 <string>the fault mesage
 <string>detail
 mt\x00\xnnjavax.ejb.FinderException
 ...
 z
 z
 

Parameters:
  code - the fault code, a three digit



writeHeader
public void writeHeader(String name) throws IOException(Code)
Writes a header name. The header value must immediately follow.
 H b16 b8 foo value
 



writeInt
public void writeInt(int value) throws IOException(Code)
Writes an integer value to the stream. The integer will be written with the following syntax:
 I b32 b24 b16 b8
 

Parameters:
  value - the integer value to write.



writeListBegin
public boolean writeListBegin(int length, String type) throws IOException(Code)
Writes the list header to the stream. List writers will call writeListBegin followed by the list contents and then call writeListEnd.
 V
 t b16 b8 type
 l b32 b24 b16 b8
 



writeListEnd
public void writeListEnd() throws IOException(Code)
Writes the tail of the list to the stream.



writeLong
public void writeLong(long value) throws IOException(Code)
Writes a long value to the stream. The long will be written with the following syntax:
 L b64 b56 b48 b40 b32 b24 b16 b8
 

Parameters:
  value - the long value to write.



writeMapBegin
public void writeMapBegin(String type) throws IOException(Code)
Writes the map header to the stream. Map writers will call writeMapBegin followed by the map contents and then call writeMapEnd.
 Mt b16 b8 ( )z
 



writeMapEnd
public void writeMapEnd() throws IOException(Code)
Writes the tail of the map to the stream.



writeMethod
public void writeMethod(String method) throws IOException(Code)
Writes the method tag.
 m b16 b8 method-name
 

Parameters:
  method - the method name to call.



writeNull
public void writeNull() throws IOException(Code)
Writes a null value to the stream. The null will be written with the following syntax
 N
 

Parameters:
  value - the string value to write.



writeObject
public void writeObject(Object object) throws IOException(Code)
Writes any object to the output stream.



writeObjectBegin
public int writeObjectBegin(String type) throws IOException(Code)
Writes the object definition
 O t b16 b8 *
 



writeObjectEnd
public void writeObjectEnd() throws IOException(Code)
Writes the tail of the object definition to the stream.



writeRef
public void writeRef(int value) throws IOException(Code)
Writes a reference.
 R b32 b24 b16 b8
 

Parameters:
  value - the integer value to write.



writeRemote
public void writeRemote(String type, String url) throws IOException(Code)
Writes a remote object reference to the stream. The type is the type of the remote interface.
 'r' 't' b16 b8 type url
 



writeStreamingObject
public void writeStreamingObject(Object obj) throws IOException(Code)
Starts the streaming message

A streaming message starts with 'P'

 P x02 x00
 



writeString
public void writeString(String value) throws IOException(Code)
Writes a string value to the stream using UTF-8 encoding. The string will be written with the following syntax:
 S b16 b8 string-value
 
If the value is null, it will be written as
 N
 

Parameters:
  value - the string value to write.



writeString
public void writeString(char[] buffer, int offset, int length) throws IOException(Code)
Writes a string value to the stream using UTF-8 encoding. The string will be written with the following syntax:
 S b16 b8 string-value
 
If the value is null, it will be written as
 N
 

Parameters:
  value - the string value to write.



writeUTCDate
public void writeUTCDate(long time) throws IOException(Code)
Writes a date to the stream.
 T  b64 b56 b48 b40 b32 b24 b16 b8
 

Parameters:
  time - the date in milliseconds from the epoch in UTC



Fields inherited from com.caucho.hessian.io.AbstractHessianOutput
protected SerializerFactory _serializerFactory(Code)(Java Doc)

Methods inherited from com.caucho.hessian.io.AbstractHessianOutput
abstract public boolean addRef(Object object) throws IOException(Code)(Java Doc)
public void call(String method, Object[] args) throws IOException(Code)(Java Doc)
public void close() throws IOException(Code)(Java Doc)
abstract public void completeCall() throws IOException(Code)(Java Doc)
public void completeReply() throws IOException(Code)(Java Doc)
final public SerializerFactory findSerializerFactory()(Code)(Java Doc)
public void flush() throws IOException(Code)(Java Doc)
public SerializerFactory getSerializerFactory()(Code)(Java Doc)
public void init(OutputStream os)(Code)(Java Doc)
abstract public boolean removeRef(Object obj) throws IOException(Code)(Java Doc)
abstract public boolean replaceRef(Object oldRef, Object newRef) throws IOException(Code)(Java Doc)
public void resetReferences()(Code)(Java Doc)
public void setSerializerFactory(SerializerFactory factory)(Code)(Java Doc)
abstract public void startCall() throws IOException(Code)(Java Doc)
abstract public void startCall(String method) throws IOException(Code)(Java Doc)
public void startReply() throws IOException(Code)(Java Doc)
abstract public void writeBoolean(boolean value) throws IOException(Code)(Java Doc)
abstract public void writeByteBufferEnd(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
abstract public void writeByteBufferPart(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
abstract public void writeByteBufferStart() throws IOException(Code)(Java Doc)
abstract public void writeBytes(byte[] buffer) throws IOException(Code)(Java Doc)
abstract public void writeBytes(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
public void writeClassFieldLength(int len) throws IOException(Code)(Java Doc)
abstract public void writeDouble(double value) throws IOException(Code)(Java Doc)
public void writeFault(String code, String message, Object detail) throws IOException(Code)(Java Doc)
abstract public void writeHeader(String name) throws IOException(Code)(Java Doc)
abstract public void writeInt(int value) throws IOException(Code)(Java Doc)
abstract public boolean writeListBegin(int length, String type) throws IOException(Code)(Java Doc)
abstract public void writeListEnd() throws IOException(Code)(Java Doc)
abstract public void writeLong(long value) throws IOException(Code)(Java Doc)
abstract public void writeMapBegin(String type) throws IOException(Code)(Java Doc)
abstract public void writeMapEnd() throws IOException(Code)(Java Doc)
abstract public void writeMethod(String method) throws IOException(Code)(Java Doc)
abstract public void writeNull() throws IOException(Code)(Java Doc)
abstract public void writeObject(Object object) throws IOException(Code)(Java Doc)
public int writeObjectBegin(String type) throws IOException(Code)(Java Doc)
public void writeObjectEnd() throws IOException(Code)(Java Doc)
abstract public void writeRef(int value) throws IOException(Code)(Java Doc)
abstract public void writeRemote(String type, String url) throws IOException(Code)(Java Doc)
abstract public void writeString(String value) throws IOException(Code)(Java Doc)
abstract public void writeString(char[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
abstract public void writeUTCDate(long time) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.