blob: f99ea7c5c1949a0f376094cc9d9d26825af3e24a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
---
title: BluetoothRemoteGATTServer
slug: Web/API/BluetoothRemoteGATTServer
tags:
- API
- Bluetooth
- BluetoothRemoteGATTServer
- Web Bluetooth API
- Интерфейс
- Определение
- Экспериментальное
translation_of: Web/API/BluetoothRemoteGATTServer
---
<div>{{APIRef("Bluetooth API")}}{{SeeCompatTable}}</div>
<p>Интерфейс <code><strong>BluetoothRemoteGATTServer</strong></code>, относящийся к <a href="/en-US/docs/Web/API/Web_Bluetooth_API">Web Bluetooth API</a>, представляет сервер GATT на удаленном устройстве.</p>
<div class="note">
<p>Данная страница описывает Web Bluetooth API от W3C Community Group. <a href="/en-US/docs/Archive/B2G_OS/API/BluetoothGattServer"><code>BluetoothGattServer</code> (Firefox OS)</a> - Bluetooth API в Firefox OS.</p>
</div>
<h2 id="Интерфейс">Интерфейс</h2>
<pre class="syntaxbox notranslate">interface BluetoothRemoteGATTServer {
readonly attribute BluetoothDevice device;
readonly attribute boolean connected;
Promise<BluetoothRemoteGATTServer> connect();
void disconnect();
Promise<BluetoothRemoteGATTService> getPrimaryService(BluetoothServiceUUID service);
Promise<sequence<BluetoothRemoteGATTService>> getPrimaryServices(optional BluetoothServiceUUID service);
};</pre>
<h2 id="Свойства">Свойства</h2>
<dl>
<dt>{{DOMxRef("BluetoothRemoteGATTServer.connected")}}{{ReadOnlyInline}}</dt>
<dd>Двоичное значение, равное <code>true</code>, если устройство <code>this.device</code> подключено. It can be false while the user agent is physically connected.</dd>
<dt>{{DOMxRef("BluetoothRemoteGATTServer.device")}}{{ReadOnlyInline}}</dt>
<dd>{{DOMxRef("BluetoothDevice")}}, на котором работает сервер.</dd>
</dl>
<h2 id="Методы">Методы</h2>
<dl>
<dt>{{DOMxRef("BluetoothRemoteGATTServer.connect()")}}</dt>
<dd>Подключение к устройству <code>this.device</code>.</dd>
<dt>{{DOMxRef("BluetoothRemoteGATTServer.disconnect()")}}</dt>
<dd>Отключение от устройства <code>this.device</code>.</dd>
<dt>{{DOMxRef("BluetoothRemoteGATTServer.getPrimaryService()")}}</dt>
<dd>Returns a promise to the primary {{DOMxRef("BluetoothGATTService")}} offered by the bluetooth device for a specified <code>BluetoothServiceUUID</code>.</dd>
<dt>{{DOMxRef("BluetoothRemoteGATTServer.getPrimaryServices()")}}</dt>
<dd>Returns a promise to a list of primary {{DOMxRef("BluetoothGATTService")}} objects offered by the bluetooth device for a specified <code>BluetoothServiceUUID</code>.</dd>
</dl>
<h2 id="Спецификации">Спецификации</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарий</th>
</tr>
<tr>
<td>{{SpecName("Web Bluetooth", "#bluetoothremotegattserver", "BluetoothRemoteGATTServer")}}</td>
<td>{{Spec2("Web Bluetooth")}}</td>
<td>Изначальное определение.</td>
</tr>
</tbody>
</table>
<h2 id="Совместимость">Совместимость</h2>
<p>{{Compat("api.BluetoothRemoteGATTServer")}}</p>
<div>{{APIRef("Web Bluetooth")}}</div>
|