File: PacketPeer.xml

package info (click to toggle)
godot 3.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 104,964 kB
  • sloc: ansic: 732,795; cpp: 601,776; xml: 56,216; asm: 17,127; lisp: 12,017; python: 9,048; java: 8,253; cs: 5,803; sh: 557; perl: 275; makefile: 98; objc: 17
file content (67 lines) | stat: -rw-r--r-- 2,020 bytes parent folder | download
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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PacketPeer" inherits="Reference" category="Core" version="3.0.6">
	<brief_description>
		Abstraction and base class for packet-based protocols.
	</brief_description>
	<description>
		PacketPeer is an abstraction and base class for packet-based protocols (such as UDP). It provides an API for sending and receiving packets both as raw data or variables. This makes it easy to transfer data over a protocol, without having to encode data as low level bytes or having to worry about network ordering.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="get_available_packet_count" qualifiers="const">
			<return type="int">
			</return>
			<description>
				Return the number of packets currently available in the ring-buffer.
			</description>
		</method>
		<method name="get_packet">
			<return type="PoolByteArray">
			</return>
			<description>
				Get a raw packet.
			</description>
		</method>
		<method name="get_packet_error" qualifiers="const">
			<return type="int" enum="Error">
			</return>
			<description>
				Return the error state of the last packet received (via [method get_packet] and [method get_var]).
			</description>
		</method>
		<method name="get_var">
			<return type="Variant">
			</return>
			<description>
				Get a Variant.
			</description>
		</method>
		<method name="put_packet">
			<return type="int" enum="Error">
			</return>
			<argument index="0" name="buffer" type="PoolByteArray">
			</argument>
			<description>
				Send a raw packet.
			</description>
		</method>
		<method name="put_var">
			<return type="int" enum="Error">
			</return>
			<argument index="0" name="var" type="Variant">
			</argument>
			<description>
				Send a Variant as a packet.
			</description>
		</method>
	</methods>
	<members>
		<member name="allow_object_decoding" type="bool" setter="set_allow_object_decoding" getter="is_object_decoding_allowed">
		</member>
	</members>
	<constants>
	</constants>
</class>