Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

BluetoothAdapter.sendFile()

This API is available on Firefox OS for internal applications only.

Summary

The sendFile method is used to start sending a file to a given remote device.

Note: Only one file can be sent at a time.

Syntax

var request = instanceOfBluetoothAdapter.sendFile(deviceAddress, file);

Parameters

deviceAddress
The Bluetooth micro-network address of the device to send a file to.
file
A Blob object representing the file to send.

Returns

A DOMRequest object to handle the success or error of the operation. In case of success, it means that the file has started to be sent but not that the file has been received by the remote device yet.

Note: To follow the file sending progress, an application must listen for the following system messages: bluetooth-opp-transfer-complete, bluetooth-opp-update-progress, bluetooth-opp-receiving-file-confirmation, and bluetooth-opp-transfer-start.

Specification

Not part of any specification yet. It should be discussed as part of the W3C's System Applications Working Group.

See also

Document Tags and Contributors

 Contributors to this page: chrisdavidmills, teoli, kscarfone, Jeremie
 Last updated by: chrisdavidmills,