/**@class android.os.ResultReceiver
 implements android.os.Parcelable

@extends java.lang.Object

 Generic interface for receiving a callback result from someone.  Use this
 by creating a subclass and implement {@link #onReceiveResult}, which you can
 then pass to others and send through IPC, and receive results they
 supply with {@link #send}.

 <p>Note: the implementation underneath is just a simple wrapper around
 a {@link android.os.Binder} that is used to perform the communication.  This means
 semantically you should treat it as such: this class does not impact process
 lifecycle management (you must be using some higher-level component to tell
 the system that your process needs to continue running), the connection will
 break if your process goes away for any reason, etc.</p>
*/
var ResultReceiver = {

/***/
CREATOR : "null",
/**Deliver a result to this receiver.  Will call {@link #onReceiveResult},
 always asynchronously if the receiver has supplied a Handler in which
 to dispatch the result.
@param {Number} resultCode Arbitrary result code to deliver, as defined by you.
@param {Object {Bundle}} resultData Any additional data provided by you.
*/
send : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},


};