Members
(static) SERIALIZATIONS :Enum
Possible serializations for the DataConnection.
DataConnectionで利用できるシリアライズ方式を取得します。
Type:
- Enum
id
An id to uniquely identify the connection.
コネクションを一意に識別するためのID。
label :string
Label to easily identify the DataConnection on either peer.
DataConnectionを簡単に識別するためのラベルです。
Type:
- string
metadata :object
Any additional information to send to the peer.
ピアに送付されたメタ情報です。.
Type:
- object
open :boolean
Whether the Connection has been opened or not.
Connectionがオープンしているかどうかを示します。
Type:
- boolean
peer :string
The remote peerId.
接続先のPeer IDです。
Type:
- string
- Deprecated:
- Use remoteId instead. 代わりにremoteIdを使ってください。
remoteId :string
PeerId of the peer this connection is connected to.
接続先のPeerIDです。
Type:
- string
type :string
The connection type. Either 'media' or 'data'.
'media'か'data'を示します。
Type:
- string
Methods
close()
Disconnect from remote peer.
対向ピアとのコネクションを切断します。
Fires:
send(data)
Send data to peer. If serialization is 'binary', it will chunk it before sending.
対向のピアにデータを送信します。もし、シリアライズ方法が'binary'である場合は、送信前に分割します。
Parameters:
Name | Type | Description |
---|---|---|
data |
* | The data to send to the peer. 対向ピアに送るためのデータです。 |
Events
close
Connection closed event.
コネクションが切断されたときに発生します。