-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSocketOptions.php
More file actions
34 lines (31 loc) · 904 Bytes
/
SocketOptions.php
File metadata and controls
34 lines (31 loc) · 904 Bytes
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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `SocketOptions` interface was auto generated.
*/
interface SocketOptions
{
/**
* Fetch the value of an option.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getOption
* @NotImplemented
*/
// public function getOption($a = null)
/**
* Enable/disable the option specified by optID.
*
* @param mixed $a
* @param mixed $b
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#setOption
* @NotImplemented
*/
// public function setOption($a = null, $b = null)
}