Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
HTTPClient.HttpOutputStream

Uses of HttpOutputStream in HTTPClient
 

Fields in HTTPClient declared as HttpOutputStream
private  HttpOutputStream Request.stream
          or an output stream on which the entity will be written
private  HttpOutputStream HTTPResponse.out_stream
          the HttpOutputStream to synchronize on
 

Methods in HTTPClient that return HttpOutputStream
 HttpOutputStream RoRequest.getStream()
           
 HttpOutputStream Request.getStream()
           
 

Methods in HTTPClient with parameters of type HttpOutputStream
 void Request.setStream(HttpOutputStream stream)
           
 HTTPResponse HTTPConnection.Post(java.lang.String file, HttpOutputStream stream)
          POSTs the data written to the output stream to the specified file.
 HTTPResponse HTTPConnection.Post(java.lang.String file, HttpOutputStream stream, NVPair[] headers)
          POSTs the data written to the output stream to the specified file using the specified headers.
 HTTPResponse HTTPConnection.Put(java.lang.String file, HttpOutputStream stream)
          PUTs the data written to the output stream into the specified file.
 HTTPResponse HTTPConnection.Put(java.lang.String file, HttpOutputStream stream, NVPair[] headers)
          PUTs the data written to the output stream into the specified file using the additional headers.
 HTTPResponse HTTPConnection.Options(java.lang.String file, NVPair[] headers, HttpOutputStream stream)
          Request OPTIONS from the server.
 HTTPResponse HTTPConnection.ExtensionMethod(java.lang.String method, java.lang.String file, HttpOutputStream os, NVPair[] headers)
          This is here to allow an arbitrary, non-standard request to be sent.
private  HTTPResponse HTTPConnection.setupRequest(java.lang.String method, java.lang.String resource, NVPair[] headers, byte[] entity, HttpOutputStream stream)
          Sets up the request, creating the list of headers to send and creating instances of the modules.
(package private)  void HTTPResponse.set(Request req, HttpOutputStream out_stream)
           
 

Constructors in HTTPClient with parameters of type HttpOutputStream
Request(HTTPConnection con, java.lang.String method, java.lang.String req_uri, NVPair[] headers, byte[] data, HttpOutputStream stream, boolean allow_ui)
          Creates a new request structure.