| java.lang.Object |
| ↳ |
com.google.gdata.data.media.MediaSource.Output |
Class Overview
The Output class provides helper methods for MediaSource handling.
Summary
| Public Methods |
|
static
void
|
writeTo(MediaSource source, OutputStream outputStream)
Helper method that writes the contents of a media source to an output
stream.
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
MediaSource.Output
()
Public Methods
public
static
void
writeTo
(MediaSource source, OutputStream outputStream)
Helper method that writes the contents of a media source to an output
stream.
Parameters
| source
| The source media stream containing the media data. |
| outputStream
| The target output stream. |
Throws
| IOException
| on any error writing the data to the stream.
|