-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathMulticastSocket.php
More file actions
178 lines (163 loc) Β· 5.88 KB
/
MulticastSocket.php
File metadata and controls
178 lines (163 loc) Β· 5.88 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\io\Closeable;
// use PHPJava\Packages\java\lang\AutoCloseable;
/**
* The `MulticastSocket` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
* @parent \PHPJava\Packages\java\net\DatagramSocket
*/
class MulticastSocket extends DatagramSocket // implements Closeable, AutoCloseable
{
/**
* Retrieve the address of the network interface used for multicast packets.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getInterface
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getInterface($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Get the setting for local loopback of multicast datagrams.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getLoopbackMode
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getLoopbackMode($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Get the multicast network interface set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getNetworkInterface
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getNetworkInterface($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Get the default time-to-live for multicast packets sent out on the socket.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getTimeToLive
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getTimeToLive($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated.use the getTimeToLive method instead, which returns an int instead of a byte.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getTTL
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getTTL($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Joins a multicast group.
* Joins the specified multicast group at the specified interface.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#joinGroup
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function joinGroup($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Leave a multicast group.
* Leave a multicast group on a specified local interface.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#leaveGroup
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function leaveGroup($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated.Use the following code or its equivalent instead: ......
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#send
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function send($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Set the multicast network interface used by methods whose behavior would be affected by the value of the network interface.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setInterface
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setInterface($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Disable/Enable local loopback of multicast datagrams The option is used by the platform's networking code as a hint for setting whether multicast data will be looped back to the local socket.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setLoopbackMode
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setLoopbackMode($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Specify the network interface for outgoing multicast datagrams sent on this socket.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setNetworkInterface
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setNetworkInterface($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Set the default time-to-live for multicast packets sent out on this MulticastSocket in order to control the scope of the multicasts.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setTimeToLive
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setTimeToLive($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated.use the setTimeToLive method instead, which uses int instead of byte as the type for ttl.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setTTL
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setTTL($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}