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
|