B2G/Bluetooth/WebBluetooth-v2/BluetoothServerSocket: Difference between revisions
< B2G | Bluetooth | WebBluetooth-v2
Jump to navigation
Jump to search
m (→BluetoothServerSocket: change the order) |
m (→onclose: Fix the description) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
BluetoothServerSocket is a listening socket which is used to listen incoming RFCOMM connection. | BluetoothServerSocket is a listening socket which is used to listen incoming RFCOMM connection. | ||
Line 13: | Line 11: | ||
readonly attribute DOMString serviceUuid; | readonly attribute DOMString serviceUuid; | ||
readonly attribute DOMString? serviceName; | readonly attribute DOMString? serviceName; | ||
attribute EventHandler onclose; | attribute EventHandler onclose; | ||
Line 48: | Line 47: | ||
=== onclose === | === onclose === | ||
; Description | ; Description | ||
: Event raised when | : Event raised when the listening socket has been close.. | ||
; Argument | ; Argument | ||
Line 62: | Line 61: | ||
== Methods == | == Methods == | ||
* [[B2G/Bluetooth/WebBluetooth-v2/BluetoothServerSocket#listen|BluetoothServerSocket.listen()]] | * [[B2G/Bluetooth/WebBluetooth-v2/BluetoothServerSocket#listen|BluetoothServerSocket.listen()]] | ||
* [[B2G/Bluetooth/WebBluetooth-v2/BluetoothServerSocket#close|BluetoothServerSocket.close()]] | |||
=== listen() === | === listen() === | ||
Line 68: | Line 68: | ||
; Return | ; Return | ||
: A Promise to indicate whether the operation is resolved or rejected. Once the Promise is resolved, it returns a BluetoothSocket object which is connected to a remote device. | : A Promise to indicate whether the operation is resolved or rejected. Once the Promise is resolved, it returns a BluetoothSocket object which is connected to a remote device. | ||
=== close() === | |||
; Description | |||
: Immediately close this listening socket. | |||
; Return | |||
: A Promise to indicate whether the operation is resolved or rejected. | |||
== See Also == | == See Also == | ||
* [[B2G/Bluetooth/WebBluetooth-v2/BluetoothSocket|BluetoothSocket]] | * [[B2G/Bluetooth/WebBluetooth-v2/BluetoothSocket|BluetoothSocket]] |
Latest revision as of 08:44, 5 March 2015
Overview
BluetoothServerSocket is a listening socket which is used to listen incoming RFCOMM connection.
Interfaces
BluetoothServerSocket
[CheckPermissions="bluetoothSocket"] interface BluetoothServerSocket: EventTarget { readonly attribute DOMString serviceUuid; readonly attribute DOMString? serviceName; attribute EventHandler onclose; [NewObject, Throws] Promise<BluetoothSocket> listen() [NewObject, Throws] Promise<void> close(); };
Properties
serviceUuid
- Description
- The UUID of Bluetooth service this server socket expected to accept for.
- Value type
- DOMString
- Default value
- Empty string ("")
serviceName
- Description
- The service name this server socket expected to accept for.
- Value type
- DOMString
- Default value
- Empty string ("")
Event Handlers
onclose
- Description
- Event raised when the listening socket has been close..
- Argument
[CheckPermissions="bluetooth"] interface BtSocketClostEvent : Event { readonly attribute DOMString reason; };
- reason
- A string indicating the reason the server closed the
Methods
listen()
- Description
- Listen for a socket connection using the RFCOMM protocol.
- Return
- A Promise to indicate whether the operation is resolved or rejected. Once the Promise is resolved, it returns a BluetoothSocket object which is connected to a remote device.
close()
- Description
- Immediately close this listening socket.
- Return
- A Promise to indicate whether the operation is resolved or rejected.