Members
id
An id to uniquely identify the connection.
コネクションを一意に識別するためのID。
localStream :MediaStream
The local MediaStream.
ローカルのMediaStreamです。
Type:
- MediaStream
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
answer(stream, optionsopt)
Create and send an answer message.
相手からの接続要求に対してに応答します。
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
stream |
MediaStream | The stream to send to the peer. リモートのPeerに送るメディアストリームです。 | |||||||||||||||||||||
options |
object |
<optional> |
Optional arguments for the connection.
応答時に付与するオプションです。
Properties
|
close()
Disconnect from remote peer.
接続先Peerとの接続を切断します。
Fires:
replaceStream(newStream)
Replace the stream being sent with a new one.
送信しているMediaStreamを更新します。受信のみモードから双方向に切り替えることもできます。
Parameters:
Name | Type | Description |
---|---|---|
newStream |
MediaStream | The stream to replace the old stream with. 交換対象となる新しいMediaStreamです。 |
Events
close
Connection closed event.
コネクションが切断されたときに発生します。
removeStream
MediaStream from peer was removed.
MediaStreamが削除されたときに発生します。
Type:
- MediaStream
stream
MediaStream received from peer.
MediaStreamを受信したときに発生します。
Type:
- MediaStream