Class AbstractBurlapInput

java.lang.Object
com.caucho.hessian.io.AbstractHessianInput
com.caucho.burlap.io.AbstractBurlapInput
Direct Known Subclasses:
BurlapInput

public abstract class AbstractBurlapInput extends AbstractHessianInput
Abstract base class for Burlap requests. Burlap users should only need to use the methods in this class.

Note, this class is just an extension of AbstractHessianInput.

 AbstractBurlapInput in = ...; // get input
 String value;

 in.startReply();         // read reply header
 value = in.readString(); // read string value
 in.completeReply();      // read reply footer
 
  • Constructor Details

    • AbstractBurlapInput

      public AbstractBurlapInput()