com.caucho.burlap.io
类 AbstractBurlapOutput

java.lang.Object
  继承者 com.caucho.hessian.io.AbstractHessianOutput
      继承者 com.caucho.burlap.io.AbstractBurlapOutput
直接已知子类:
BurlapOutput

public abstract class AbstractBurlapOutput
extends AbstractHessianOutput

Abstract output stream for Burlap requests.

 OutputStream os = ...; // from http connection
 AbstractOutput out = new BurlapSerializerOutput(os);
 String value;

 out.startCall("hello");  // start hello call
 out.writeString("arg1"); // write a string argument
 out.completeCall();      // complete the call
 


构造方法摘要
AbstractBurlapOutput()
           
 
方法摘要
 void startCall(java.lang.String method, int length)
          Starts the method call: C string int
 
从类 com.caucho.hessian.io.AbstractHessianOutput 继承的方法
addRef, call, close, completeCall, completeReply, flush, getRef, getSerializerFactory, init, removeRef, replaceRef, resetReferences, setSerializerFactory, setUnshared, startCall, startReply, writeBoolean, writeByteBufferEnd, writeByteBufferPart, writeByteBufferStart, writeBytes, writeBytes, writeByteStream, writeClassFieldLength, writeDouble, writeFault, writeHeader, writeInt, writeListBegin, writeListEnd, writeLong, writeMapBegin, writeMapEnd, writeMethod, writeNull, writeObject, writeObjectBegin, writeObjectEnd, writeReply, writeString, writeString, writeUTCDate
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

AbstractBurlapOutput

public AbstractBurlapOutput()
方法详细信息

startCall

public void startCall(java.lang.String method,
                      int length)
               throws java.io.IOException
从类 AbstractHessianOutput 复制的描述
Starts the method call:
 C string int
 

指定者:
AbstractHessianOutput 中的 startCall
参数:
method - the method name to call.
抛出:
java.io.IOException