2019-05-10 23:46:27 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
<class name= "WebRTCDataChannel" inherits= "PacketPeer" category= "Core" version= "3.2" >
<brief_description >
</brief_description>
<description >
</description>
<tutorials >
</tutorials>
<methods >
<method name= "close" >
<return type= "void" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Closes this data channel, notifying the other peer.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "get_id" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns the id assigned to this channel during creation (or auto-assigned during negotiation).
If the channel is not negotiated out-of-band the id will only be available after the connection is established (will return [code]65535[/code] until then).
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "get_label" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns the label assigned to this channel during creation.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "get_max_packet_life_time" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns the maxPacketLifeTime value assigned to this channel during creation.
Will be [code]65535[/code] if not specified.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "get_max_retransmits" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns the maxRetransmits value assigned to this channel during creation.
Will be [code]65535[/code] if not specified.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "get_protocol" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns the sub-proctocol assigned to this channel during creation. An empty string if not specified.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "get_ready_state" qualifiers= "const" >
<return type= "int" enum= "WebRTCDataChannel.ChannelState" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns the current state of this channel, see [enum WebRTCDataChannel.ChannelState].
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "is_negotiated" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns [code]true[/code] if this channel was created with out-of-band configuration.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "is_ordered" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns [code]true[/code] if this channel was created with ordering enabled (default).
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "poll" >
<return type= "int" enum= "Error" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Reserved, but not used for now.
2019-05-10 23:46:27 +00:00
</description>
</method>
<method name= "was_string_packet" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2019-06-03 13:20:15 +00:00
Returns [code]true[/code] if the last received packet was transfered as text. See [property write_mode].
2019-05-10 23:46:27 +00:00
</description>
</method>
</methods>
<members >
<member name= "write_mode" type= "int" setter= "set_write_mode" getter= "get_write_mode" enum= "WebRTCDataChannel.WriteMode" >
2019-06-03 13:20:15 +00:00
The transfer mode to use when sending outgoing packet. Either text or binary.
2019-05-10 23:46:27 +00:00
</member>
</members>
<constants >
<constant name= "WRITE_MODE_TEXT" value= "0" enum= "WriteMode" >
2019-06-03 13:20:15 +00:00
Tells the channel to send data over this channel as text. An external peer (non-godot) would receive this as a string.
2019-05-10 23:46:27 +00:00
</constant>
<constant name= "WRITE_MODE_BINARY" value= "1" enum= "WriteMode" >
2019-06-03 13:20:15 +00:00
Tells the channel to send data over this channel as binary. An external peer (non-godot) would receive this as arraybuffer or blob.
2019-05-10 23:46:27 +00:00
</constant>
<constant name= "STATE_CONNECTING" value= "0" enum= "ChannelState" >
2019-06-03 13:20:15 +00:00
The channel was created, but it's still trying to connect.
2019-05-10 23:46:27 +00:00
</constant>
<constant name= "STATE_OPEN" value= "1" enum= "ChannelState" >
2019-06-03 13:20:15 +00:00
The channel is currently open, and data can flow over it.
2019-05-10 23:46:27 +00:00
</constant>
<constant name= "STATE_CLOSING" value= "2" enum= "ChannelState" >
2019-06-03 13:20:15 +00:00
The channel is being closed, no new messages will be accepted, but those already in queue will be flushed.
2019-05-10 23:46:27 +00:00
</constant>
<constant name= "STATE_CLOSED" value= "3" enum= "ChannelState" >
2019-06-03 13:20:15 +00:00
The channel was closed, or connection failed.
2019-05-10 23:46:27 +00:00
</constant>
</constants>
</class>