/**@class android.content.ContentProvider.PipeDataWriter
 Interface to write a stream of data to a pipe.  Use with
 {@link android.content.ContentProvider#openPipeHelper}.
*/
var PipeDataWriter = {

/**Called from a background thread to stream data out to a pipe.
 Note that the pipe is blocking, so this thread can block on
 writes for an arbitrary amount of time if the client is slow
 at reading.
@param {Object {ParcelFileDescriptor}} output The pipe where data should be written.  This will be
 closed for you upon returning from this function.
@param {Object {Uri}} uri The URI whose data is to be written.
@param {String} mimeType The desired type of data to be written.
@param {Object {Bundle}} opts Options supplied by caller.
@param {Object {Object}} args Your own custom arguments.
*/
writeDataToPipe : function(  ) {},


};