Abstraction and base class for stream-based protocols.
</brief_description>
<description>
StreamPeer is an abstraction and base class for stream-based protocols (such as TCP). It provides an API for sending and receiving data through streams as raw data or strings.
Returns the amount of bytes this [StreamPeer] has available.
</description>
</method>
<methodname="get_data">
<returntype="Array"/>
<argumentindex="0"name="bytes"type="int"/>
<description>
Returns a chunk data with the received bytes. The amount of bytes to be received can be requested in the [code]bytes[/code] argument. If not enough bytes are available, the function will block until the desired amount is received. This function returns two values, an [enum @GlobalScope.Error] code and a data array.
</description>
</method>
<methodname="get_double">
<returntype="float"/>
<description>
Gets a double-precision float from the stream.
</description>
</method>
<methodname="get_float">
<returntype="float"/>
<description>
Gets a single-precision float from the stream.
</description>
</method>
<methodname="get_partial_data">
<returntype="Array"/>
<argumentindex="0"name="bytes"type="int"/>
<description>
Returns a chunk data with the received bytes. The amount of bytes to be received can be requested in the "bytes" argument. If not enough bytes are available, the function will return how many were actually received. This function returns two values, an [enum @GlobalScope.Error] code, and a data array.
Gets an ASCII string with byte-length [code]bytes[/code] from the stream. If [code]bytes[/code] is negative (default) the length will be read from the stream using the reverse process of [method put_string].
Gets an UTF-8 string with byte-length [code]bytes[/code] from the stream (this decodes the string sent as UTF-8). If [code]bytes[/code] is negative (default) the length will be read from the stream using the reverse process of [method put_utf8_string].
Gets a Variant from the stream. If [code]allow_objects[/code] is [code]true[/code], decoding objects is allowed.
[b]Warning:[/b] Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.
Sends a chunk of data through the connection, blocking if necessary until the data is done sending. This function returns an [enum @GlobalScope.Error] code.
Sends a chunk of data through the connection. If all the data could not be sent at once, only part of it will. This function returns two values, an [enum @GlobalScope.Error] code and an integer, describing how much data was actually sent.
</description>
</method>
<methodname="put_string">
<returntype="void"/>
<argumentindex="0"name="value"type="String"/>
<description>
Puts a zero-terminated ASCII string into the stream prepended by a 32-bit unsigned integer representing its size.
[b]Note:[/b] To put an ASCII string without prepending its size, you can use [method put_data]:
[codeblock]
put_data("Hello world".to_ascii())
[/codeblock]
</description>
</method>
<methodname="put_u16">
<returntype="void"/>
<argumentindex="0"name="value"type="int"/>
<description>
Puts an unsigned 16-bit value into the stream.
</description>
</method>
<methodname="put_u32">
<returntype="void"/>
<argumentindex="0"name="value"type="int"/>
<description>
Puts an unsigned 32-bit value into the stream.
</description>
</method>
<methodname="put_u64">
<returntype="void"/>
<argumentindex="0"name="value"type="int"/>
<description>
Puts an unsigned 64-bit value into the stream.
</description>
</method>
<methodname="put_u8">
<returntype="void"/>
<argumentindex="0"name="value"type="int"/>
<description>
Puts an unsigned byte into the stream.
</description>
</method>
<methodname="put_utf8_string">
<returntype="void"/>
<argumentindex="0"name="value"type="String"/>
<description>
Puts a zero-terminated UTF-8 string into the stream prepended by a 32 bits unsigned integer representing its size.
[b]Note:[/b] To put an UTF-8 string without prepending its size, you can use [method put_data]: