Uses of Interface
com.google.api.client.util.StreamingContent
-
Packages that use StreamingContent Package Description com.google.api.client.http Subset of HTTP 1.1 needed from the specification in RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1.com.google.api.client.http.apache HTTP Transport library for Google API's based on Apache HTTP Client version 4.com.google.api.client.http.apache.v2 HTTP Transport library for Google API's based on Apache HTTP Client version 4.5+.com.google.api.client.http.apache.v5 HTTP Transport library for Google API's based on Apache HTTP Client/Core version 5.xcom.google.api.client.http.javanet HTTP Transport library for Google API's based on thejava.netpackage.com.google.api.client.http.json JSON HTTP library based on the pluggable HTTP library.com.google.api.client.http.protobuf com.google.api.client.http.xml Beta
XML HTTP library based on the pluggable HTTP library.com.google.api.client.http.xml.atom Beta
Atom XML HTTP library based on the pluggable HTTP library.com.google.api.client.testing.http Beta
Testing utilities used for writing tests based on this library.com.google.api.client.util General utilities used throughout this library. -
-
Uses of StreamingContent in com.google.api.client.http
Subinterfaces of StreamingContent in com.google.api.client.http Modifier and Type Interface Description interfaceHttpContentSerializes HTTP request content into an output stream.Classes in com.google.api.client.http that implement StreamingContent Modifier and Type Class Description classAbstractHttpContentAbstract implementation of an HTTP content with typical options.classAbstractInputStreamContentSerializes HTTP request content from an input stream into an output stream.classByteArrayContentConcrete implementation ofAbstractInputStreamContentthat generates repeatable input streams based on the contents of byte array.classEmptyContentEmpty HTTP content of length zero just to forceHttpRequest.execute()to add the headerContent-Length: 0.classFileContentConcrete implementation ofAbstractInputStreamContentthat generates repeatable input streams based on the contents of a file.classHttpEncodingStreamingContentStreaming content based on an HTTP encoding.classInputStreamContentConcrete implementation ofAbstractInputStreamContentthat simply handles the transfer of data from an input stream to an output stream.classMultipartContentSerializes MIME multipart content as specified by RFC 2387: The MIME Multipart/Related Content-type and RFC 2046: Multipurpose Internet Mail Extensions: The Multipart/mixed (primary) subtype.classUrlEncodedContentImplements support for HTTP form content encoding serialization of typeapplication/x-www-form-urlencodedas specified in the HTML 4.0 Specification.Fields in com.google.api.client.http declared as StreamingContent Modifier and Type Field Description private StreamingContentHttpEncodingStreamingContent. contentStreaming content.private StreamingContentLowLevelHttpRequest. streamingContentStreaming content ornullfor no content.Methods in com.google.api.client.http that return StreamingContent Modifier and Type Method Description StreamingContentHttpEncodingStreamingContent. getContent()Returns the streaming content.StreamingContentLowLevelHttpRequest. getStreamingContent()Returns the streaming content ornullfor no content.Methods in com.google.api.client.http with parameters of type StreamingContent Modifier and Type Method Description voidGZipEncoding. encode(StreamingContent content, java.io.OutputStream out)voidHttpEncoding. encode(StreamingContent content, java.io.OutputStream out)Encodes the streaming content into the output stream.voidLowLevelHttpRequest. setStreamingContent(StreamingContent streamingContent)Sets the streaming content ornullfor no content.Constructors in com.google.api.client.http with parameters of type StreamingContent Constructor Description HttpEncodingStreamingContent(StreamingContent content, HttpEncoding encoding) -
Uses of StreamingContent in com.google.api.client.http.apache
Fields in com.google.api.client.http.apache declared as StreamingContent Modifier and Type Field Description private StreamingContentContentEntity. streamingContentStreaming content.Constructors in com.google.api.client.http.apache with parameters of type StreamingContent Constructor Description ContentEntity(long contentLength, StreamingContent streamingContent) -
Uses of StreamingContent in com.google.api.client.http.apache.v2
Fields in com.google.api.client.http.apache.v2 declared as StreamingContent Modifier and Type Field Description private StreamingContentContentEntity. streamingContentStreaming content.Constructors in com.google.api.client.http.apache.v2 with parameters of type StreamingContent Constructor Description ContentEntity(long contentLength, StreamingContent streamingContent) -
Uses of StreamingContent in com.google.api.client.http.apache.v5
Fields in com.google.api.client.http.apache.v5 declared as StreamingContent Modifier and Type Field Description private StreamingContentApache5ContentEntity. streamingContentStreaming content.Constructors in com.google.api.client.http.apache.v5 with parameters of type StreamingContent Constructor Description Apache5ContentEntity(long contentLength, StreamingContent streamingContent, java.lang.String contentType, java.lang.String contentEncoding) -
Uses of StreamingContent in com.google.api.client.http.javanet
Methods in com.google.api.client.http.javanet with parameters of type StreamingContent Modifier and Type Method Description voidNetHttpRequest.DefaultOutputWriter. write(java.io.OutputStream outputStream, StreamingContent content)voidNetHttpRequest.OutputWriter. write(java.io.OutputStream outputStream, StreamingContent content) -
Uses of StreamingContent in com.google.api.client.http.json
Classes in com.google.api.client.http.json that implement StreamingContent Modifier and Type Class Description classJsonHttpContentSerializes JSON HTTP content based on the data key/value mapping object for an item. -
Uses of StreamingContent in com.google.api.client.http.protobuf
Classes in com.google.api.client.http.protobuf that implement StreamingContent Modifier and Type Class Description classProtoHttpContentBeta
Serializes of a protocol buffer message to HTTP content. -
Uses of StreamingContent in com.google.api.client.http.xml
Classes in com.google.api.client.http.xml that implement StreamingContent Modifier and Type Class Description classAbstractXmlHttpContentBeta
Abstract serializer for XML HTTP content based on the data key/value mapping object for an item.classXmlHttpContentBeta
Serializes XML HTTP content based on the data key/value mapping object for an item. -
Uses of StreamingContent in com.google.api.client.http.xml.atom
Classes in com.google.api.client.http.xml.atom that implement StreamingContent Modifier and Type Class Description classAtomContentBeta
Serializes Atom XML HTTP content based on the data key/value mapping object for an Atom entry. -
Uses of StreamingContent in com.google.api.client.testing.http
Classes in com.google.api.client.testing.http that implement StreamingContent Modifier and Type Class Description classMockHttpContent -
Uses of StreamingContent in com.google.api.client.util
Classes in com.google.api.client.util that implement StreamingContent Modifier and Type Class Description classByteArrayStreamingContentDeprecated.use com.google.common.io.ByteSourceclassLoggingStreamingContentWraps another streaming content without modifying the content, but also logging content usingLoggingOutputStream.Fields in com.google.api.client.util declared as StreamingContent Modifier and Type Field Description private StreamingContentLoggingStreamingContent. contentStreaming content.Methods in com.google.api.client.util with parameters of type StreamingContent Modifier and Type Method Description static longIOUtils. computeLength(StreamingContent content)Computes and returns the byte content length for a streaming content by callingwriteTo(OutputStream)on a fake output stream that only counts bytes written.Constructors in com.google.api.client.util with parameters of type StreamingContent Constructor Description LoggingStreamingContent(StreamingContent content, java.util.logging.Logger logger, java.util.logging.Level loggingLevel, int contentLoggingLimit)
-