blob: 82f6db18e9f7c1d3f4da562c565dad71950160cc (
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: WebSocket.readyState
slug: Web/API/WebSocket/readyState
translation_of: Web/API/WebSocket/readyState
---
<p>{{APIRef("Web Sockets API")}}</p>
<p><strong><code>WebSocket.readyState</code></strong> は、{{domxref("WebSocket")}} の「現在」の接続状態を返す読み取り専用のプロパティです。</p>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate">var readyState = <em>aWebSocket</em>.readyState;</pre>
<h2 id="値">値</h2>
<p>以下のいづれかの <code>符号なしショート型</code> の値を返します。</p>
<table class="standard-table">
<tbody>
<tr>
<td class="header">Value</td>
<td class="header">State</td>
<td class="header">Description</td>
</tr>
<tr>
<td><code>0</code></td>
<td><code>CONNECTING</code></td>
<td>
<p>ソケットは作成されているが、まだコネクションが開いていない状態</p>
</td>
</tr>
<tr>
<td><code>1</code></td>
<td><code>OPEN</code></td>
<td>
<p>コネクションが開き、通信の準備ができている状態</p>
</td>
</tr>
<tr>
<td><code>2</code></td>
<td><code>CLOSING</code></td>
<td>
<p>コネクションが閉じる過程にある状態</p>
</td>
</tr>
<tr>
<td><code>3</code></td>
<td><code>CLOSED</code></td>
<td>
<p>コネクションが閉じられたか、もしくは開けていなかった状態</p>
</td>
</tr>
</tbody>
</table>
<h2 id="仕様書">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-websocket-readystate', 'WebSocket: readyState')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<p>{{Compat("api.WebSocket.readyState")}}</p>
|