Complex classes like Socket often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Socket, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 5 | class Socket extends AbstractType |
||
| 6 | { |
||
| 7 | protected $Accept; |
||
| 8 | |||
| 9 | protected $After = []; |
||
| 10 | |||
| 11 | protected $AmbientCapabilities; |
||
| 12 | |||
| 13 | protected $Backlog; |
||
| 14 | |||
| 15 | protected $BindsTo = []; |
||
| 16 | |||
| 17 | protected $BindIPv6Only; |
||
| 18 | |||
| 19 | protected $BlockIOAccounting; |
||
| 20 | |||
| 21 | protected $BlockIOWeight; |
||
| 22 | |||
| 23 | protected $Broadcast; |
||
| 24 | |||
| 25 | protected $CPUAccounting; |
||
| 26 | |||
| 27 | protected $CPUQuotaPerSecUSec; |
||
| 28 | |||
| 29 | protected $CPUSchedulingPolicy; |
||
| 30 | |||
| 31 | protected $CPUSchedulingPriority; |
||
| 32 | |||
| 33 | protected $CPUSchedulingResetOnFork; |
||
| 34 | |||
| 35 | protected $CPUShares; |
||
| 36 | |||
| 37 | protected $CPUUsageNSec; |
||
| 38 | |||
| 39 | protected $CPUWeight; |
||
| 40 | |||
| 41 | protected $CapabilityBoundingSet; |
||
| 42 | |||
| 43 | protected $ConflictedBy = []; |
||
| 44 | |||
| 45 | protected $Conflicts = []; |
||
| 46 | |||
| 47 | protected $ControlPID; |
||
| 48 | |||
| 49 | protected $DeferAcceptUSec; |
||
| 50 | |||
| 51 | protected $Delegate; |
||
| 52 | |||
| 53 | protected $DevicePolicy; |
||
| 54 | |||
| 55 | protected $DirectoryMode; |
||
| 56 | |||
| 57 | protected $Documentation = []; |
||
| 58 | |||
| 59 | protected $DynamicUser; |
||
| 60 | |||
| 61 | protected $FileDescriptorName; |
||
| 62 | |||
| 63 | protected $FragmentPath; |
||
| 64 | |||
| 65 | protected $FreeBind; |
||
| 66 | |||
| 67 | protected $GID; |
||
| 68 | |||
| 69 | protected $IOAccounting; |
||
| 70 | |||
| 71 | protected $IOScheduling; |
||
| 72 | |||
| 73 | protected $IOWeight; |
||
| 74 | |||
| 75 | protected $IPTOS; |
||
| 76 | |||
| 77 | protected $IPTTL; |
||
| 78 | |||
| 79 | protected $IgnoreSIGPIPE; |
||
| 80 | |||
| 81 | protected $KeepAlive; |
||
| 82 | |||
| 83 | protected $KeepAliveIntervalUSec; |
||
| 84 | |||
| 85 | protected $KeepAliveProbes; |
||
| 86 | |||
| 87 | protected $KeepAliveTimeUSec; |
||
| 88 | |||
| 89 | protected $KillMode; |
||
| 90 | |||
| 91 | protected $KillSignal; |
||
| 92 | |||
| 93 | protected $LimitAS; |
||
| 94 | |||
| 95 | protected $LimitASSoft; |
||
| 96 | |||
| 97 | protected $LimitCORE; |
||
| 98 | |||
| 99 | protected $LimitCORESoft; |
||
| 100 | |||
| 101 | protected $LimitCPU; |
||
| 102 | |||
| 103 | protected $LimitCPUSoft; |
||
| 104 | |||
| 105 | protected $LimitDATA; |
||
| 106 | |||
| 107 | protected $LimitDATASoft; |
||
| 108 | |||
| 109 | protected $LimitFSIZE; |
||
| 110 | |||
| 111 | protected $LimitFSIZESoft; |
||
| 112 | |||
| 113 | protected $LimitLOCKS; |
||
| 114 | |||
| 115 | protected $LimitLOCKSSoft; |
||
| 116 | |||
| 117 | protected $LimitMEMLOCK; |
||
| 118 | |||
| 119 | protected $LimitMEMLOCKSoft; |
||
| 120 | |||
| 121 | protected $LimitMSGQUEUE; |
||
| 122 | |||
| 123 | protected $LimitMSGQUEUESoft; |
||
| 124 | |||
| 125 | protected $LimitNICE; |
||
| 126 | |||
| 127 | protected $LimitNICESoft; |
||
| 128 | |||
| 129 | protected $LimitNOFILE; |
||
| 130 | |||
| 131 | protected $LimitNOFILESoft; |
||
| 132 | |||
| 133 | protected $LimitNPROC; |
||
| 134 | |||
| 135 | protected $LimitNPROCSoft; |
||
| 136 | |||
| 137 | protected $LimitRSS; |
||
| 138 | |||
| 139 | protected $LimitRSSSoft; |
||
| 140 | |||
| 141 | protected $LimitRTPRIO; |
||
| 142 | |||
| 143 | protected $LimitRTPRIOSoft; |
||
| 144 | |||
| 145 | protected $LimitRTTIME; |
||
| 146 | |||
| 147 | protected $LimitRTTIMESoft; |
||
| 148 | |||
| 149 | protected $LimitSIGPENDING; |
||
| 150 | |||
| 151 | protected $LimitSIGPENDINGSoft; |
||
| 152 | |||
| 153 | protected $LimitSTACK; |
||
| 154 | |||
| 155 | protected $LimitSTACKSoft; |
||
| 156 | |||
| 157 | protected $ListenDatagram; |
||
| 158 | |||
| 159 | protected $ListenFIFO; |
||
| 160 | |||
| 161 | protected $ListenNetlink; |
||
| 162 | |||
| 163 | protected $ListenSequentialPacket; |
||
| 164 | |||
| 165 | protected $ListenSpecial; |
||
| 166 | |||
| 167 | protected $ListenStream; |
||
| 168 | |||
| 169 | protected $Mark; |
||
| 170 | |||
| 171 | protected $MaxConnections; |
||
| 172 | |||
| 173 | protected $MaxConnectionsPerSource; |
||
| 174 | |||
| 175 | protected $MemoryAccounting; |
||
| 176 | |||
| 177 | protected $MemoryCurrent; |
||
| 178 | |||
| 179 | protected $MemoryDenyWriteExecute; |
||
| 180 | |||
| 181 | protected $MemoryHigh; |
||
| 182 | |||
| 183 | protected $MemoryLimit; |
||
| 184 | |||
| 185 | protected $MemoryLow; |
||
| 186 | |||
| 187 | protected $MemoryMax; |
||
| 188 | |||
| 189 | protected $MemorySwapMax; |
||
| 190 | |||
| 191 | protected $MessageQueueMaxMessages; |
||
| 192 | |||
| 193 | protected $MessageQueueMessageSize; |
||
| 194 | |||
| 195 | protected $MountFlags; |
||
| 196 | |||
| 197 | protected $NAccepted; |
||
| 198 | |||
| 199 | protected $NConnections; |
||
| 200 | |||
| 201 | protected $Nice; |
||
| 202 | |||
| 203 | protected $NoDelay; |
||
| 204 | |||
| 205 | protected $NoNewPrivileges; |
||
| 206 | |||
| 207 | protected $NonBlocking; |
||
| 208 | |||
| 209 | protected $OOMScoreAdjust; |
||
| 210 | |||
| 211 | protected $PassCredentials; |
||
| 212 | |||
| 213 | protected $PassSecurity; |
||
| 214 | |||
| 215 | protected $PipeSize; |
||
| 216 | |||
| 217 | protected $Priority; |
||
| 218 | |||
| 219 | protected $PrivateDevices; |
||
| 220 | |||
| 221 | protected $PrivateNetwork; |
||
| 222 | |||
| 223 | protected $PrivateTmp; |
||
| 224 | |||
| 225 | protected $PrivateUsers; |
||
| 226 | |||
| 227 | protected $ProtectControlGroups; |
||
| 228 | |||
| 229 | protected $ProtectHome; |
||
| 230 | |||
| 231 | protected $ProtectKernelModules; |
||
| 232 | |||
| 233 | protected $ProtectKernelTunables; |
||
| 234 | |||
| 235 | protected $ProtectSystem; |
||
| 236 | |||
| 237 | protected $ReceiveBuffer; |
||
| 238 | |||
| 239 | protected $RemoveIPC; |
||
| 240 | |||
| 241 | protected $RemoveOnStop; |
||
| 242 | |||
| 243 | protected $RequiredBy = []; |
||
| 244 | |||
| 245 | protected $Requires = []; |
||
| 246 | |||
| 247 | protected $RequiresMountsFor = []; |
||
| 248 | |||
| 249 | protected $RestrictNamespace; |
||
| 250 | |||
| 251 | protected $RestrictRealtime; |
||
| 252 | |||
| 253 | protected $Result; |
||
| 254 | |||
| 255 | protected $ReusePort; |
||
| 256 | |||
| 257 | protected $RuntimeDirectoryMode; |
||
| 258 | |||
| 259 | protected $SameProcessGroup; |
||
| 260 | |||
| 261 | protected $SecureBits; |
||
| 262 | |||
| 263 | protected $SendBuffer; |
||
| 264 | |||
| 265 | protected $SendSIGHUP; |
||
| 266 | |||
| 267 | protected $SendSIGKILL; |
||
| 268 | |||
| 269 | protected $SocketMode; |
||
| 270 | |||
| 271 | protected $SocketProtocol; |
||
| 272 | |||
| 273 | protected $StandardError; |
||
| 274 | |||
| 275 | protected $StandardInput; |
||
| 276 | |||
| 277 | protected $StandardOutput; |
||
| 278 | |||
| 279 | protected $StartupBlockIOWeight; |
||
| 280 | |||
| 281 | protected $StartupCPUShares; |
||
| 282 | |||
| 283 | protected $StartupCPUWeight; |
||
| 284 | |||
| 285 | protected $StartupIOWeight; |
||
| 286 | |||
| 287 | protected $Symlinks; |
||
| 288 | |||
| 289 | protected $SyslogFacility; |
||
| 290 | |||
| 291 | protected $SyslogLevel; |
||
| 292 | |||
| 293 | protected $SyslogLevelPrefix; |
||
| 294 | |||
| 295 | protected $SyslogPriority; |
||
| 296 | |||
| 297 | protected $SystemCallErrorNumber; |
||
| 298 | |||
| 299 | protected $TTYReset; |
||
| 300 | |||
| 301 | protected $TTYVHangup; |
||
| 302 | |||
| 303 | protected $TTYVTDisallocate; |
||
| 304 | |||
| 305 | protected $TasksAccounting; |
||
| 306 | |||
| 307 | protected $TasksCurrent; |
||
| 308 | |||
| 309 | protected $TasksMax; |
||
| 310 | |||
| 311 | protected $TimeoutUSec; |
||
| 312 | |||
| 313 | protected $TimerSlackNSec; |
||
| 314 | |||
| 315 | protected $Transparent; |
||
| 316 | |||
| 317 | protected $TriggerLimitBurst; |
||
| 318 | |||
| 319 | protected $TriggerLimitIntervalSec; |
||
| 320 | |||
| 321 | protected $TriggerLimitIntervalUSec; |
||
| 322 | |||
| 323 | protected $Triggers = []; |
||
| 324 | |||
| 325 | protected $UID; |
||
| 326 | |||
| 327 | protected $UMask; |
||
| 328 | |||
| 329 | protected $UnitFilePreset; |
||
| 330 | |||
| 331 | protected $UnitFileState; |
||
| 332 | |||
| 333 | protected $UtmpMode; |
||
| 334 | |||
| 335 | protected $WantedBy = []; |
||
| 336 | |||
| 337 | protected $Writable; |
||
| 338 | |||
| 339 | /** |
||
| 340 | * @return mixed |
||
| 341 | */ |
||
| 342 | public function getAccept() |
||
| 346 | |||
| 347 | /** |
||
| 348 | * @param mixed $Accept |
||
| 349 | * @return Socket |
||
| 350 | */ |
||
| 351 | public function setAccept($Accept) |
||
| 356 | |||
| 357 | /** |
||
| 358 | * @return array |
||
| 359 | */ |
||
| 360 | public function getAfter(): array |
||
| 364 | |||
| 365 | /** |
||
| 366 | * @param array $After |
||
| 367 | * @return Socket |
||
| 368 | */ |
||
| 369 | public function setAfter(array $After): Socket |
||
| 374 | |||
| 375 | /** |
||
| 376 | * @return mixed |
||
| 377 | */ |
||
| 378 | public function getAmbientCapabilities() |
||
| 382 | |||
| 383 | /** |
||
| 384 | * @param mixed $AmbientCapabilities |
||
| 385 | * @return Socket |
||
| 386 | */ |
||
| 387 | public function setAmbientCapabilities($AmbientCapabilities) |
||
| 392 | |||
| 393 | /** |
||
| 394 | * @return mixed |
||
| 395 | */ |
||
| 396 | public function getBacklog() |
||
| 400 | |||
| 401 | /** |
||
| 402 | * @param mixed $Backlog |
||
| 403 | * @return Socket |
||
| 404 | */ |
||
| 405 | public function setBacklog($Backlog) |
||
| 410 | |||
| 411 | /** |
||
| 412 | * @return array |
||
| 413 | */ |
||
| 414 | public function getBindsTo(): array |
||
| 418 | |||
| 419 | /** |
||
| 420 | * @param array $BindsTo |
||
| 421 | * @return Socket |
||
| 422 | */ |
||
| 423 | public function setBindsTo(array $BindsTo): Socket |
||
| 428 | |||
| 429 | /** |
||
| 430 | * @return mixed |
||
| 431 | */ |
||
| 432 | public function getBindIPv6Only() |
||
| 436 | |||
| 437 | /** |
||
| 438 | * @param mixed $BindIPv6Only |
||
| 439 | * @return Socket |
||
| 440 | */ |
||
| 441 | public function setBindIPv6Only($BindIPv6Only) |
||
| 446 | |||
| 447 | /** |
||
| 448 | * @return mixed |
||
| 449 | */ |
||
| 450 | public function getBlockIOAccounting() |
||
| 454 | |||
| 455 | /** |
||
| 456 | * @param mixed $BlockIOAccounting |
||
| 457 | * @return Socket |
||
| 458 | */ |
||
| 459 | public function setBlockIOAccounting($BlockIOAccounting) |
||
| 464 | |||
| 465 | /** |
||
| 466 | * @return mixed |
||
| 467 | */ |
||
| 468 | public function getBlockIOWeight() |
||
| 472 | |||
| 473 | /** |
||
| 474 | * @param mixed $BlockIOWeight |
||
| 475 | * @return Socket |
||
| 476 | */ |
||
| 477 | public function setBlockIOWeight($BlockIOWeight) |
||
| 482 | |||
| 483 | /** |
||
| 484 | * @return mixed |
||
| 485 | */ |
||
| 486 | public function getBroadcast() |
||
| 490 | |||
| 491 | /** |
||
| 492 | * @param mixed $Broadcast |
||
| 493 | * @return Socket |
||
| 494 | */ |
||
| 495 | public function setBroadcast($Broadcast) |
||
| 500 | |||
| 501 | /** |
||
| 502 | * @return mixed |
||
| 503 | */ |
||
| 504 | public function getCPUAccounting() |
||
| 508 | |||
| 509 | /** |
||
| 510 | * @param mixed $CPUAccounting |
||
| 511 | * @return Socket |
||
| 512 | */ |
||
| 513 | public function setCPUAccounting($CPUAccounting) |
||
| 518 | |||
| 519 | /** |
||
| 520 | * @return mixed |
||
| 521 | */ |
||
| 522 | public function getCPUQuotaPerSecUSec() |
||
| 526 | |||
| 527 | /** |
||
| 528 | * @param mixed $CPUQuotaPerSecUSec |
||
| 529 | * @return Socket |
||
| 530 | */ |
||
| 531 | public function setCPUQuotaPerSecUSec($CPUQuotaPerSecUSec) |
||
| 536 | |||
| 537 | /** |
||
| 538 | * @return mixed |
||
| 539 | */ |
||
| 540 | public function getCPUSchedulingPolicy() |
||
| 544 | |||
| 545 | /** |
||
| 546 | * @param mixed $CPUSchedulingPolicy |
||
| 547 | * @return Socket |
||
| 548 | */ |
||
| 549 | public function setCPUSchedulingPolicy($CPUSchedulingPolicy) |
||
| 554 | |||
| 555 | /** |
||
| 556 | * @return mixed |
||
| 557 | */ |
||
| 558 | public function getCPUSchedulingPriority() |
||
| 562 | |||
| 563 | /** |
||
| 564 | * @param mixed $CPUSchedulingPriority |
||
| 565 | * @return Socket |
||
| 566 | */ |
||
| 567 | public function setCPUSchedulingPriority($CPUSchedulingPriority) |
||
| 572 | |||
| 573 | /** |
||
| 574 | * @return mixed |
||
| 575 | */ |
||
| 576 | public function getCPUSchedulingResetOnFork() |
||
| 580 | |||
| 581 | /** |
||
| 582 | * @param mixed $CPUSchedulingResetOnFork |
||
| 583 | * @return Socket |
||
| 584 | */ |
||
| 585 | public function setCPUSchedulingResetOnFork($CPUSchedulingResetOnFork) |
||
| 590 | |||
| 591 | /** |
||
| 592 | * @return mixed |
||
| 593 | */ |
||
| 594 | public function getCPUShares() |
||
| 598 | |||
| 599 | /** |
||
| 600 | * @param mixed $CPUShares |
||
| 601 | * @return Socket |
||
| 602 | */ |
||
| 603 | public function setCPUShares($CPUShares) |
||
| 608 | |||
| 609 | /** |
||
| 610 | * @return mixed |
||
| 611 | */ |
||
| 612 | public function getCPUUsageNSec() |
||
| 616 | |||
| 617 | /** |
||
| 618 | * @param mixed $CPUUsageNSec |
||
| 619 | * @return Socket |
||
| 620 | */ |
||
| 621 | public function setCPUUsageNSec($CPUUsageNSec) |
||
| 626 | |||
| 627 | /** |
||
| 628 | * @return mixed |
||
| 629 | */ |
||
| 630 | public function getCPUWeight() |
||
| 634 | |||
| 635 | /** |
||
| 636 | * @param mixed $CPUWeight |
||
| 637 | * @return Socket |
||
| 638 | */ |
||
| 639 | public function setCPUWeight($CPUWeight) |
||
| 644 | |||
| 645 | /** |
||
| 646 | * @return mixed |
||
| 647 | */ |
||
| 648 | public function getCapabilityBoundingSet() |
||
| 652 | |||
| 653 | /** |
||
| 654 | * @param mixed $CapabilityBoundingSet |
||
| 655 | * @return Socket |
||
| 656 | */ |
||
| 657 | public function setCapabilityBoundingSet($CapabilityBoundingSet) |
||
| 662 | |||
| 663 | /** |
||
| 664 | * @return array |
||
| 665 | */ |
||
| 666 | public function getConflictedBy(): array |
||
| 670 | |||
| 671 | /** |
||
| 672 | * @param array $ConflictedBy |
||
| 673 | * @return Socket |
||
| 674 | */ |
||
| 675 | public function setConflictedBy(array $ConflictedBy): Socket |
||
| 680 | |||
| 681 | /** |
||
| 682 | * @return array |
||
| 683 | */ |
||
| 684 | public function getConflicts(): array |
||
| 688 | |||
| 689 | /** |
||
| 690 | * @param array $Conflicts |
||
| 691 | * @return Socket |
||
| 692 | */ |
||
| 693 | public function setConflicts(array $Conflicts): Socket |
||
| 698 | |||
| 699 | /** |
||
| 700 | * @return mixed |
||
| 701 | */ |
||
| 702 | public function getControlPID() |
||
| 706 | |||
| 707 | /** |
||
| 708 | * @param mixed $ControlPID |
||
| 709 | * @return Socket |
||
| 710 | */ |
||
| 711 | public function setControlPID($ControlPID) |
||
| 716 | |||
| 717 | /** |
||
| 718 | * @return mixed |
||
| 719 | */ |
||
| 720 | public function getDeferAcceptUSec() |
||
| 724 | |||
| 725 | /** |
||
| 726 | * @param mixed $DeferAcceptUSec |
||
| 727 | * @return Socket |
||
| 728 | */ |
||
| 729 | public function setDeferAcceptUSec($DeferAcceptUSec) |
||
| 734 | |||
| 735 | /** |
||
| 736 | * @return mixed |
||
| 737 | */ |
||
| 738 | public function getDelegate() |
||
| 742 | |||
| 743 | /** |
||
| 744 | * @param mixed $Delegate |
||
| 745 | * @return Socket |
||
| 746 | */ |
||
| 747 | public function setDelegate($Delegate) |
||
| 752 | |||
| 753 | /** |
||
| 754 | * @return mixed |
||
| 755 | */ |
||
| 756 | public function getDevicePolicy() |
||
| 760 | |||
| 761 | /** |
||
| 762 | * @param mixed $DevicePolicy |
||
| 763 | * @return Socket |
||
| 764 | */ |
||
| 765 | public function setDevicePolicy($DevicePolicy) |
||
| 770 | |||
| 771 | /** |
||
| 772 | * @return mixed |
||
| 773 | */ |
||
| 774 | public function getDirectoryMode() |
||
| 778 | |||
| 779 | /** |
||
| 780 | * @param mixed $DirectoryMode |
||
| 781 | * @return Socket |
||
| 782 | */ |
||
| 783 | public function setDirectoryMode($DirectoryMode) |
||
| 788 | |||
| 789 | /** |
||
| 790 | * @return array |
||
| 791 | */ |
||
| 792 | public function getDocumentation(): array |
||
| 796 | |||
| 797 | /** |
||
| 798 | * @param array $Documentation |
||
| 799 | * @return Socket |
||
| 800 | */ |
||
| 801 | public function setDocumentation(array $Documentation): Socket |
||
| 806 | |||
| 807 | /** |
||
| 808 | * @return mixed |
||
| 809 | */ |
||
| 810 | public function getDynamicUser() |
||
| 814 | |||
| 815 | /** |
||
| 816 | * @param mixed $DynamicUser |
||
| 817 | * @return Socket |
||
| 818 | */ |
||
| 819 | public function setDynamicUser($DynamicUser) |
||
| 824 | |||
| 825 | /** |
||
| 826 | * @return mixed |
||
| 827 | */ |
||
| 828 | public function getFileDescriptorName() |
||
| 832 | |||
| 833 | /** |
||
| 834 | * @param mixed $FileDescriptorName |
||
| 835 | * @return Socket |
||
| 836 | */ |
||
| 837 | public function setFileDescriptorName($FileDescriptorName) |
||
| 842 | |||
| 843 | /** |
||
| 844 | * @return mixed |
||
| 845 | */ |
||
| 846 | public function getFragmentPath() |
||
| 850 | |||
| 851 | /** |
||
| 852 | * @param mixed $FragmentPath |
||
| 853 | * @return Socket |
||
| 854 | */ |
||
| 855 | public function setFragmentPath($FragmentPath) |
||
| 860 | |||
| 861 | /** |
||
| 862 | * @return mixed |
||
| 863 | */ |
||
| 864 | public function getFreeBind() |
||
| 868 | |||
| 869 | /** |
||
| 870 | * @param mixed $FreeBind |
||
| 871 | * @return Socket |
||
| 872 | */ |
||
| 873 | public function setFreeBind($FreeBind) |
||
| 878 | |||
| 879 | /** |
||
| 880 | * @return mixed |
||
| 881 | */ |
||
| 882 | public function getGID() |
||
| 886 | |||
| 887 | /** |
||
| 888 | * @param mixed $GID |
||
| 889 | * @return Socket |
||
| 890 | */ |
||
| 891 | public function setGID($GID) |
||
| 896 | |||
| 897 | /** |
||
| 898 | * @return mixed |
||
| 899 | */ |
||
| 900 | public function getIOAccounting() |
||
| 904 | |||
| 905 | /** |
||
| 906 | * @param mixed $IOAccounting |
||
| 907 | * @return Socket |
||
| 908 | */ |
||
| 909 | public function setIOAccounting($IOAccounting) |
||
| 914 | |||
| 915 | /** |
||
| 916 | * @return mixed |
||
| 917 | */ |
||
| 918 | public function getIOScheduling() |
||
| 922 | |||
| 923 | /** |
||
| 924 | * @param mixed $IOScheduling |
||
| 925 | * @return Socket |
||
| 926 | */ |
||
| 927 | public function setIOScheduling($IOScheduling) |
||
| 932 | |||
| 933 | /** |
||
| 934 | * @return mixed |
||
| 935 | */ |
||
| 936 | public function getIOWeight() |
||
| 940 | |||
| 941 | /** |
||
| 942 | * @param mixed $IOWeight |
||
| 943 | * @return Socket |
||
| 944 | */ |
||
| 945 | public function setIOWeight($IOWeight) |
||
| 950 | |||
| 951 | /** |
||
| 952 | * @return mixed |
||
| 953 | */ |
||
| 954 | public function getIPTOS() |
||
| 958 | |||
| 959 | /** |
||
| 960 | * @param mixed $IPTOS |
||
| 961 | * @return Socket |
||
| 962 | */ |
||
| 963 | public function setIPTOS($IPTOS) |
||
| 968 | |||
| 969 | /** |
||
| 970 | * @return mixed |
||
| 971 | */ |
||
| 972 | public function getIPTTL() |
||
| 976 | |||
| 977 | /** |
||
| 978 | * @param mixed $IPTTL |
||
| 979 | * @return Socket |
||
| 980 | */ |
||
| 981 | public function setIPTTL($IPTTL) |
||
| 986 | |||
| 987 | /** |
||
| 988 | * @return mixed |
||
| 989 | */ |
||
| 990 | public function getIgnoreSIGPIPE() |
||
| 994 | |||
| 995 | /** |
||
| 996 | * @param mixed $IgnoreSIGPIPE |
||
| 997 | * @return Socket |
||
| 998 | */ |
||
| 999 | public function setIgnoreSIGPIPE($IgnoreSIGPIPE) |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * @return mixed |
||
| 1007 | */ |
||
| 1008 | public function getKeepAlive() |
||
| 1012 | |||
| 1013 | /** |
||
| 1014 | * @param mixed $KeepAlive |
||
| 1015 | * @return Socket |
||
| 1016 | */ |
||
| 1017 | public function setKeepAlive($KeepAlive) |
||
| 1022 | |||
| 1023 | /** |
||
| 1024 | * @return mixed |
||
| 1025 | */ |
||
| 1026 | public function getKeepAliveIntervalUSec() |
||
| 1030 | |||
| 1031 | /** |
||
| 1032 | * @param mixed $KeepAliveIntervalUSec |
||
| 1033 | * @return Socket |
||
| 1034 | */ |
||
| 1035 | public function setKeepAliveIntervalUSec($KeepAliveIntervalUSec) |
||
| 1040 | |||
| 1041 | /** |
||
| 1042 | * @return mixed |
||
| 1043 | */ |
||
| 1044 | public function getKeepAliveProbes() |
||
| 1048 | |||
| 1049 | /** |
||
| 1050 | * @param mixed $KeepAliveProbes |
||
| 1051 | * @return Socket |
||
| 1052 | */ |
||
| 1053 | public function setKeepAliveProbes($KeepAliveProbes) |
||
| 1058 | |||
| 1059 | /** |
||
| 1060 | * @return mixed |
||
| 1061 | */ |
||
| 1062 | public function getKeepAliveTimeUSec() |
||
| 1066 | |||
| 1067 | /** |
||
| 1068 | * @param mixed $KeepAliveTimeUSec |
||
| 1069 | * @return Socket |
||
| 1070 | */ |
||
| 1071 | public function setKeepAliveTimeUSec($KeepAliveTimeUSec) |
||
| 1076 | |||
| 1077 | /** |
||
| 1078 | * @return mixed |
||
| 1079 | */ |
||
| 1080 | public function getKillMode() |
||
| 1084 | |||
| 1085 | /** |
||
| 1086 | * @param mixed $KillMode |
||
| 1087 | * @return Socket |
||
| 1088 | */ |
||
| 1089 | public function setKillMode($KillMode) |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * @return mixed |
||
| 1097 | */ |
||
| 1098 | public function getKillSignal() |
||
| 1102 | |||
| 1103 | /** |
||
| 1104 | * @param mixed $KillSignal |
||
| 1105 | * @return Socket |
||
| 1106 | */ |
||
| 1107 | public function setKillSignal($KillSignal) |
||
| 1112 | |||
| 1113 | /** |
||
| 1114 | * @return mixed |
||
| 1115 | */ |
||
| 1116 | public function getLimitAS() |
||
| 1120 | |||
| 1121 | /** |
||
| 1122 | * @param mixed $LimitAS |
||
| 1123 | * @return Socket |
||
| 1124 | */ |
||
| 1125 | public function setLimitAS($LimitAS) |
||
| 1130 | |||
| 1131 | /** |
||
| 1132 | * @return mixed |
||
| 1133 | */ |
||
| 1134 | public function getLimitASSoft() |
||
| 1138 | |||
| 1139 | /** |
||
| 1140 | * @param mixed $LimitASSoft |
||
| 1141 | * @return Socket |
||
| 1142 | */ |
||
| 1143 | public function setLimitASSoft($LimitASSoft) |
||
| 1148 | |||
| 1149 | /** |
||
| 1150 | * @return mixed |
||
| 1151 | */ |
||
| 1152 | public function getLimitCORE() |
||
| 1156 | |||
| 1157 | /** |
||
| 1158 | * @param mixed $LimitCORE |
||
| 1159 | * @return Socket |
||
| 1160 | */ |
||
| 1161 | public function setLimitCORE($LimitCORE) |
||
| 1166 | |||
| 1167 | /** |
||
| 1168 | * @return mixed |
||
| 1169 | */ |
||
| 1170 | public function getLimitCORESoft() |
||
| 1174 | |||
| 1175 | /** |
||
| 1176 | * @param mixed $LimitCORESoft |
||
| 1177 | * @return Socket |
||
| 1178 | */ |
||
| 1179 | public function setLimitCORESoft($LimitCORESoft) |
||
| 1184 | |||
| 1185 | /** |
||
| 1186 | * @return mixed |
||
| 1187 | */ |
||
| 1188 | public function getLimitCPU() |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * @param mixed $LimitCPU |
||
| 1195 | * @return Socket |
||
| 1196 | */ |
||
| 1197 | public function setLimitCPU($LimitCPU) |
||
| 1202 | |||
| 1203 | /** |
||
| 1204 | * @return mixed |
||
| 1205 | */ |
||
| 1206 | public function getLimitCPUSoft() |
||
| 1210 | |||
| 1211 | /** |
||
| 1212 | * @param mixed $LimitCPUSoft |
||
| 1213 | * @return Socket |
||
| 1214 | */ |
||
| 1215 | public function setLimitCPUSoft($LimitCPUSoft) |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * @return mixed |
||
| 1223 | */ |
||
| 1224 | public function getLimitDATA() |
||
| 1228 | |||
| 1229 | /** |
||
| 1230 | * @param mixed $LimitDATA |
||
| 1231 | * @return Socket |
||
| 1232 | */ |
||
| 1233 | public function setLimitDATA($LimitDATA) |
||
| 1238 | |||
| 1239 | /** |
||
| 1240 | * @return mixed |
||
| 1241 | */ |
||
| 1242 | public function getLimitDATASoft() |
||
| 1246 | |||
| 1247 | /** |
||
| 1248 | * @param mixed $LimitDATASoft |
||
| 1249 | * @return Socket |
||
| 1250 | */ |
||
| 1251 | public function setLimitDATASoft($LimitDATASoft) |
||
| 1256 | |||
| 1257 | /** |
||
| 1258 | * @return mixed |
||
| 1259 | */ |
||
| 1260 | public function getLimitFSIZE() |
||
| 1264 | |||
| 1265 | /** |
||
| 1266 | * @param mixed $LimitFSIZE |
||
| 1267 | * @return Socket |
||
| 1268 | */ |
||
| 1269 | public function setLimitFSIZE($LimitFSIZE) |
||
| 1274 | |||
| 1275 | /** |
||
| 1276 | * @return mixed |
||
| 1277 | */ |
||
| 1278 | public function getLimitFSIZESoft() |
||
| 1282 | |||
| 1283 | /** |
||
| 1284 | * @param mixed $LimitFSIZESoft |
||
| 1285 | * @return Socket |
||
| 1286 | */ |
||
| 1287 | public function setLimitFSIZESoft($LimitFSIZESoft) |
||
| 1292 | |||
| 1293 | /** |
||
| 1294 | * @return mixed |
||
| 1295 | */ |
||
| 1296 | public function getLimitLOCKS() |
||
| 1300 | |||
| 1301 | /** |
||
| 1302 | * @param mixed $LimitLOCKS |
||
| 1303 | * @return Socket |
||
| 1304 | */ |
||
| 1305 | public function setLimitLOCKS($LimitLOCKS) |
||
| 1310 | |||
| 1311 | /** |
||
| 1312 | * @return mixed |
||
| 1313 | */ |
||
| 1314 | public function getLimitLOCKSSoft() |
||
| 1318 | |||
| 1319 | /** |
||
| 1320 | * @param mixed $LimitLOCKSSoft |
||
| 1321 | * @return Socket |
||
| 1322 | */ |
||
| 1323 | public function setLimitLOCKSSoft($LimitLOCKSSoft) |
||
| 1328 | |||
| 1329 | /** |
||
| 1330 | * @return mixed |
||
| 1331 | */ |
||
| 1332 | public function getLimitMEMLOCK() |
||
| 1336 | |||
| 1337 | /** |
||
| 1338 | * @param mixed $LimitMEMLOCK |
||
| 1339 | * @return Socket |
||
| 1340 | */ |
||
| 1341 | public function setLimitMEMLOCK($LimitMEMLOCK) |
||
| 1346 | |||
| 1347 | /** |
||
| 1348 | * @return mixed |
||
| 1349 | */ |
||
| 1350 | public function getLimitMEMLOCKSoft() |
||
| 1354 | |||
| 1355 | /** |
||
| 1356 | * @param mixed $LimitMEMLOCKSoft |
||
| 1357 | * @return Socket |
||
| 1358 | */ |
||
| 1359 | public function setLimitMEMLOCKSoft($LimitMEMLOCKSoft) |
||
| 1364 | |||
| 1365 | /** |
||
| 1366 | * @return mixed |
||
| 1367 | */ |
||
| 1368 | public function getLimitMSGQUEUE() |
||
| 1372 | |||
| 1373 | /** |
||
| 1374 | * @param mixed $LimitMSGQUEUE |
||
| 1375 | * @return Socket |
||
| 1376 | */ |
||
| 1377 | public function setLimitMSGQUEUE($LimitMSGQUEUE) |
||
| 1382 | |||
| 1383 | /** |
||
| 1384 | * @return mixed |
||
| 1385 | */ |
||
| 1386 | public function getLimitMSGQUEUESoft() |
||
| 1390 | |||
| 1391 | /** |
||
| 1392 | * @param mixed $LimitMSGQUEUESoft |
||
| 1393 | * @return Socket |
||
| 1394 | */ |
||
| 1395 | public function setLimitMSGQUEUESoft($LimitMSGQUEUESoft) |
||
| 1400 | |||
| 1401 | /** |
||
| 1402 | * @return mixed |
||
| 1403 | */ |
||
| 1404 | public function getLimitNICE() |
||
| 1408 | |||
| 1409 | /** |
||
| 1410 | * @param mixed $LimitNICE |
||
| 1411 | * @return Socket |
||
| 1412 | */ |
||
| 1413 | public function setLimitNICE($LimitNICE) |
||
| 1418 | |||
| 1419 | /** |
||
| 1420 | * @return mixed |
||
| 1421 | */ |
||
| 1422 | public function getLimitNICESoft() |
||
| 1426 | |||
| 1427 | /** |
||
| 1428 | * @param mixed $LimitNICESoft |
||
| 1429 | * @return Socket |
||
| 1430 | */ |
||
| 1431 | public function setLimitNICESoft($LimitNICESoft) |
||
| 1436 | |||
| 1437 | /** |
||
| 1438 | * @return mixed |
||
| 1439 | */ |
||
| 1440 | public function getLimitNOFILE() |
||
| 1444 | |||
| 1445 | /** |
||
| 1446 | * @param mixed $LimitNOFILE |
||
| 1447 | * @return Socket |
||
| 1448 | */ |
||
| 1449 | public function setLimitNOFILE($LimitNOFILE) |
||
| 1454 | |||
| 1455 | /** |
||
| 1456 | * @return mixed |
||
| 1457 | */ |
||
| 1458 | public function getLimitNOFILESoft() |
||
| 1462 | |||
| 1463 | /** |
||
| 1464 | * @param mixed $LimitNOFILESoft |
||
| 1465 | * @return Socket |
||
| 1466 | */ |
||
| 1467 | public function setLimitNOFILESoft($LimitNOFILESoft) |
||
| 1472 | |||
| 1473 | /** |
||
| 1474 | * @return mixed |
||
| 1475 | */ |
||
| 1476 | public function getLimitNPROC() |
||
| 1480 | |||
| 1481 | /** |
||
| 1482 | * @param mixed $LimitNPROC |
||
| 1483 | * @return Socket |
||
| 1484 | */ |
||
| 1485 | public function setLimitNPROC($LimitNPROC) |
||
| 1490 | |||
| 1491 | /** |
||
| 1492 | * @return mixed |
||
| 1493 | */ |
||
| 1494 | public function getLimitNPROCSoft() |
||
| 1498 | |||
| 1499 | /** |
||
| 1500 | * @param mixed $LimitNPROCSoft |
||
| 1501 | * @return Socket |
||
| 1502 | */ |
||
| 1503 | public function setLimitNPROCSoft($LimitNPROCSoft) |
||
| 1508 | |||
| 1509 | /** |
||
| 1510 | * @return mixed |
||
| 1511 | */ |
||
| 1512 | public function getLimitRSS() |
||
| 1516 | |||
| 1517 | /** |
||
| 1518 | * @param mixed $LimitRSS |
||
| 1519 | * @return Socket |
||
| 1520 | */ |
||
| 1521 | public function setLimitRSS($LimitRSS) |
||
| 1526 | |||
| 1527 | /** |
||
| 1528 | * @return mixed |
||
| 1529 | */ |
||
| 1530 | public function getLimitRSSSoft() |
||
| 1534 | |||
| 1535 | /** |
||
| 1536 | * @param mixed $LimitRSSSoft |
||
| 1537 | * @return Socket |
||
| 1538 | */ |
||
| 1539 | public function setLimitRSSSoft($LimitRSSSoft) |
||
| 1544 | |||
| 1545 | /** |
||
| 1546 | * @return mixed |
||
| 1547 | */ |
||
| 1548 | public function getLimitRTPRIO() |
||
| 1552 | |||
| 1553 | /** |
||
| 1554 | * @param mixed $LimitRTPRIO |
||
| 1555 | * @return Socket |
||
| 1556 | */ |
||
| 1557 | public function setLimitRTPRIO($LimitRTPRIO) |
||
| 1562 | |||
| 1563 | /** |
||
| 1564 | * @return mixed |
||
| 1565 | */ |
||
| 1566 | public function getLimitRTPRIOSoft() |
||
| 1570 | |||
| 1571 | /** |
||
| 1572 | * @param mixed $LimitRTPRIOSoft |
||
| 1573 | * @return Socket |
||
| 1574 | */ |
||
| 1575 | public function setLimitRTPRIOSoft($LimitRTPRIOSoft) |
||
| 1580 | |||
| 1581 | /** |
||
| 1582 | * @return mixed |
||
| 1583 | */ |
||
| 1584 | public function getLimitRTTIME() |
||
| 1588 | |||
| 1589 | /** |
||
| 1590 | * @param mixed $LimitRTTIME |
||
| 1591 | * @return Socket |
||
| 1592 | */ |
||
| 1593 | public function setLimitRTTIME($LimitRTTIME) |
||
| 1598 | |||
| 1599 | /** |
||
| 1600 | * @return mixed |
||
| 1601 | */ |
||
| 1602 | public function getLimitRTTIMESoft() |
||
| 1606 | |||
| 1607 | /** |
||
| 1608 | * @param mixed $LimitRTTIMESoft |
||
| 1609 | * @return Socket |
||
| 1610 | */ |
||
| 1611 | public function setLimitRTTIMESoft($LimitRTTIMESoft) |
||
| 1616 | |||
| 1617 | /** |
||
| 1618 | * @return mixed |
||
| 1619 | */ |
||
| 1620 | public function getLimitSIGPENDING() |
||
| 1624 | |||
| 1625 | /** |
||
| 1626 | * @param mixed $LimitSIGPENDING |
||
| 1627 | * @return Socket |
||
| 1628 | */ |
||
| 1629 | public function setLimitSIGPENDING($LimitSIGPENDING) |
||
| 1634 | |||
| 1635 | /** |
||
| 1636 | * @return mixed |
||
| 1637 | */ |
||
| 1638 | public function getLimitSIGPENDINGSoft() |
||
| 1642 | |||
| 1643 | /** |
||
| 1644 | * @param mixed $LimitSIGPENDINGSoft |
||
| 1645 | * @return Socket |
||
| 1646 | */ |
||
| 1647 | public function setLimitSIGPENDINGSoft($LimitSIGPENDINGSoft) |
||
| 1652 | |||
| 1653 | /** |
||
| 1654 | * @return mixed |
||
| 1655 | */ |
||
| 1656 | public function getLimitSTACK() |
||
| 1660 | |||
| 1661 | /** |
||
| 1662 | * @param mixed $LimitSTACK |
||
| 1663 | * @return Socket |
||
| 1664 | */ |
||
| 1665 | public function setLimitSTACK($LimitSTACK) |
||
| 1670 | |||
| 1671 | /** |
||
| 1672 | * @return mixed |
||
| 1673 | */ |
||
| 1674 | public function getLimitSTACKSoft() |
||
| 1678 | |||
| 1679 | /** |
||
| 1680 | * @param mixed $LimitSTACKSoft |
||
| 1681 | * @return Socket |
||
| 1682 | */ |
||
| 1683 | public function setLimitSTACKSoft($LimitSTACKSoft) |
||
| 1688 | |||
| 1689 | /** |
||
| 1690 | * @return mixed |
||
| 1691 | */ |
||
| 1692 | public function getListenDatagram() |
||
| 1696 | |||
| 1697 | /** |
||
| 1698 | * @param mixed $ListenDatagram |
||
| 1699 | * @return Socket |
||
| 1700 | */ |
||
| 1701 | public function setListenDatagram($ListenDatagram) |
||
| 1706 | |||
| 1707 | /** |
||
| 1708 | * @return mixed |
||
| 1709 | */ |
||
| 1710 | public function getListenFIFO() |
||
| 1714 | |||
| 1715 | /** |
||
| 1716 | * @param mixed $ListenFIFO |
||
| 1717 | * @return Socket |
||
| 1718 | */ |
||
| 1719 | public function setListenFIFO($ListenFIFO) |
||
| 1724 | |||
| 1725 | /** |
||
| 1726 | * @return mixed |
||
| 1727 | */ |
||
| 1728 | public function getListenNetlink() |
||
| 1732 | |||
| 1733 | /** |
||
| 1734 | * @param mixed $ListenNetlink |
||
| 1735 | * @return Socket |
||
| 1736 | */ |
||
| 1737 | public function setListenNetlink($ListenNetlink) |
||
| 1742 | |||
| 1743 | /** |
||
| 1744 | * @return mixed |
||
| 1745 | */ |
||
| 1746 | public function getListenSequentialPacket() |
||
| 1750 | |||
| 1751 | /** |
||
| 1752 | * @param mixed $ListenSequentialPacket |
||
| 1753 | * @return Socket |
||
| 1754 | */ |
||
| 1755 | public function setListenSequentialPacket($ListenSequentialPacket) |
||
| 1760 | |||
| 1761 | /** |
||
| 1762 | * @return mixed |
||
| 1763 | */ |
||
| 1764 | public function getListenSpecial() |
||
| 1768 | |||
| 1769 | /** |
||
| 1770 | * @param mixed $ListenSpecial |
||
| 1771 | * @return Socket |
||
| 1772 | */ |
||
| 1773 | public function setListenSpecial($ListenSpecial) |
||
| 1778 | |||
| 1779 | /** |
||
| 1780 | * @return mixed |
||
| 1781 | */ |
||
| 1782 | public function getListenStream() |
||
| 1786 | |||
| 1787 | /** |
||
| 1788 | * @param mixed $ListenStream |
||
| 1789 | * @return Socket |
||
| 1790 | */ |
||
| 1791 | public function setListenStream($ListenStream) |
||
| 1796 | |||
| 1797 | /** |
||
| 1798 | * @return mixed |
||
| 1799 | */ |
||
| 1800 | public function getMark() |
||
| 1804 | |||
| 1805 | /** |
||
| 1806 | * @param mixed $Mark |
||
| 1807 | * @return Socket |
||
| 1808 | */ |
||
| 1809 | public function setMark($Mark) |
||
| 1814 | |||
| 1815 | /** |
||
| 1816 | * @return mixed |
||
| 1817 | */ |
||
| 1818 | public function getMaxConnections() |
||
| 1822 | |||
| 1823 | /** |
||
| 1824 | * @param mixed $MaxConnections |
||
| 1825 | * @return Socket |
||
| 1826 | */ |
||
| 1827 | public function setMaxConnections($MaxConnections) |
||
| 1832 | |||
| 1833 | /** |
||
| 1834 | * @return mixed |
||
| 1835 | */ |
||
| 1836 | public function getMaxConnectionsPerSource() |
||
| 1840 | |||
| 1841 | /** |
||
| 1842 | * @param mixed $MaxConnectionsPerSource |
||
| 1843 | * @return Socket |
||
| 1844 | */ |
||
| 1845 | public function setMaxConnectionsPerSource($MaxConnectionsPerSource) |
||
| 1850 | |||
| 1851 | /** |
||
| 1852 | * @return mixed |
||
| 1853 | */ |
||
| 1854 | public function getMemoryAccounting() |
||
| 1858 | |||
| 1859 | /** |
||
| 1860 | * @param mixed $MemoryAccounting |
||
| 1861 | * @return Socket |
||
| 1862 | */ |
||
| 1863 | public function setMemoryAccounting($MemoryAccounting) |
||
| 1868 | |||
| 1869 | /** |
||
| 1870 | * @return mixed |
||
| 1871 | */ |
||
| 1872 | public function getMemoryCurrent() |
||
| 1876 | |||
| 1877 | /** |
||
| 1878 | * @param mixed $MemoryCurrent |
||
| 1879 | * @return Socket |
||
| 1880 | */ |
||
| 1881 | public function setMemoryCurrent($MemoryCurrent) |
||
| 1886 | |||
| 1887 | /** |
||
| 1888 | * @return mixed |
||
| 1889 | */ |
||
| 1890 | public function getMemoryDenyWriteExecute() |
||
| 1894 | |||
| 1895 | /** |
||
| 1896 | * @param mixed $MemoryDenyWriteExecute |
||
| 1897 | * @return Socket |
||
| 1898 | */ |
||
| 1899 | public function setMemoryDenyWriteExecute($MemoryDenyWriteExecute) |
||
| 1904 | |||
| 1905 | /** |
||
| 1906 | * @return mixed |
||
| 1907 | */ |
||
| 1908 | public function getMemoryHigh() |
||
| 1912 | |||
| 1913 | /** |
||
| 1914 | * @param mixed $MemoryHigh |
||
| 1915 | * @return Socket |
||
| 1916 | */ |
||
| 1917 | public function setMemoryHigh($MemoryHigh) |
||
| 1922 | |||
| 1923 | /** |
||
| 1924 | * @return mixed |
||
| 1925 | */ |
||
| 1926 | public function getMemoryLimit() |
||
| 1930 | |||
| 1931 | /** |
||
| 1932 | * @param mixed $MemoryLimit |
||
| 1933 | * @return Socket |
||
| 1934 | */ |
||
| 1935 | public function setMemoryLimit($MemoryLimit) |
||
| 1940 | |||
| 1941 | /** |
||
| 1942 | * @return mixed |
||
| 1943 | */ |
||
| 1944 | public function getMemoryLow() |
||
| 1948 | |||
| 1949 | /** |
||
| 1950 | * @param mixed $MemoryLow |
||
| 1951 | * @return Socket |
||
| 1952 | */ |
||
| 1953 | public function setMemoryLow($MemoryLow) |
||
| 1958 | |||
| 1959 | /** |
||
| 1960 | * @return mixed |
||
| 1961 | */ |
||
| 1962 | public function getMemoryMax() |
||
| 1966 | |||
| 1967 | /** |
||
| 1968 | * @param mixed $MemoryMax |
||
| 1969 | * @return Socket |
||
| 1970 | */ |
||
| 1971 | public function setMemoryMax($MemoryMax) |
||
| 1976 | |||
| 1977 | /** |
||
| 1978 | * @return mixed |
||
| 1979 | */ |
||
| 1980 | public function getMemorySwapMax() |
||
| 1984 | |||
| 1985 | /** |
||
| 1986 | * @param mixed $MemorySwapMax |
||
| 1987 | * @return Socket |
||
| 1988 | */ |
||
| 1989 | public function setMemorySwapMax($MemorySwapMax) |
||
| 1994 | |||
| 1995 | /** |
||
| 1996 | * @return mixed |
||
| 1997 | */ |
||
| 1998 | public function getMessageQueueMaxMessages() |
||
| 2002 | |||
| 2003 | /** |
||
| 2004 | * @param mixed $MessageQueueMaxMessages |
||
| 2005 | * @return Socket |
||
| 2006 | */ |
||
| 2007 | public function setMessageQueueMaxMessages($MessageQueueMaxMessages) |
||
| 2012 | |||
| 2013 | /** |
||
| 2014 | * @return mixed |
||
| 2015 | */ |
||
| 2016 | public function getMessageQueueMessageSize() |
||
| 2020 | |||
| 2021 | /** |
||
| 2022 | * @param mixed $MessageQueueMessageSize |
||
| 2023 | * @return Socket |
||
| 2024 | */ |
||
| 2025 | public function setMessageQueueMessageSize($MessageQueueMessageSize) |
||
| 2030 | |||
| 2031 | /** |
||
| 2032 | * @return mixed |
||
| 2033 | */ |
||
| 2034 | public function getMountFlags() |
||
| 2038 | |||
| 2039 | /** |
||
| 2040 | * @param mixed $MountFlags |
||
| 2041 | * @return Socket |
||
| 2042 | */ |
||
| 2043 | public function setMountFlags($MountFlags) |
||
| 2048 | |||
| 2049 | /** |
||
| 2050 | * @return mixed |
||
| 2051 | */ |
||
| 2052 | public function getNAccepted() |
||
| 2056 | |||
| 2057 | /** |
||
| 2058 | * @param mixed $NAccepted |
||
| 2059 | * @return Socket |
||
| 2060 | */ |
||
| 2061 | public function setNAccepted($NAccepted) |
||
| 2066 | |||
| 2067 | /** |
||
| 2068 | * @return mixed |
||
| 2069 | */ |
||
| 2070 | public function getNConnections() |
||
| 2074 | |||
| 2075 | /** |
||
| 2076 | * @param mixed $NConnections |
||
| 2077 | * @return Socket |
||
| 2078 | */ |
||
| 2079 | public function setNConnections($NConnections) |
||
| 2084 | |||
| 2085 | /** |
||
| 2086 | * @return mixed |
||
| 2087 | */ |
||
| 2088 | public function getNice() |
||
| 2092 | |||
| 2093 | /** |
||
| 2094 | * @param mixed $Nice |
||
| 2095 | * @return Socket |
||
| 2096 | */ |
||
| 2097 | public function setNice($Nice) |
||
| 2102 | |||
| 2103 | /** |
||
| 2104 | * @return mixed |
||
| 2105 | */ |
||
| 2106 | public function getNoDelay() |
||
| 2110 | |||
| 2111 | /** |
||
| 2112 | * @param mixed $NoDelay |
||
| 2113 | * @return Socket |
||
| 2114 | */ |
||
| 2115 | public function setNoDelay($NoDelay) |
||
| 2120 | |||
| 2121 | /** |
||
| 2122 | * @return mixed |
||
| 2123 | */ |
||
| 2124 | public function getNoNewPrivileges() |
||
| 2128 | |||
| 2129 | /** |
||
| 2130 | * @param mixed $NoNewPrivileges |
||
| 2131 | * @return Socket |
||
| 2132 | */ |
||
| 2133 | public function setNoNewPrivileges($NoNewPrivileges) |
||
| 2138 | |||
| 2139 | /** |
||
| 2140 | * @return mixed |
||
| 2141 | */ |
||
| 2142 | public function getNonBlocking() |
||
| 2146 | |||
| 2147 | /** |
||
| 2148 | * @param mixed $NonBlocking |
||
| 2149 | * @return Socket |
||
| 2150 | */ |
||
| 2151 | public function setNonBlocking($NonBlocking) |
||
| 2156 | |||
| 2157 | /** |
||
| 2158 | * @return mixed |
||
| 2159 | */ |
||
| 2160 | public function getOOMScoreAdjust() |
||
| 2164 | |||
| 2165 | /** |
||
| 2166 | * @param mixed $OOMScoreAdjust |
||
| 2167 | * @return Socket |
||
| 2168 | */ |
||
| 2169 | public function setOOMScoreAdjust($OOMScoreAdjust) |
||
| 2174 | |||
| 2175 | /** |
||
| 2176 | * @return mixed |
||
| 2177 | */ |
||
| 2178 | public function getPassCredentials() |
||
| 2182 | |||
| 2183 | /** |
||
| 2184 | * @param mixed $PassCredentials |
||
| 2185 | * @return Socket |
||
| 2186 | */ |
||
| 2187 | public function setPassCredentials($PassCredentials) |
||
| 2192 | |||
| 2193 | /** |
||
| 2194 | * @return mixed |
||
| 2195 | */ |
||
| 2196 | public function getPassSecurity() |
||
| 2200 | |||
| 2201 | /** |
||
| 2202 | * @param mixed $PassSecurity |
||
| 2203 | * @return Socket |
||
| 2204 | */ |
||
| 2205 | public function setPassSecurity($PassSecurity) |
||
| 2210 | |||
| 2211 | /** |
||
| 2212 | * @return mixed |
||
| 2213 | */ |
||
| 2214 | public function getPipeSize() |
||
| 2218 | |||
| 2219 | /** |
||
| 2220 | * @param mixed $PipeSize |
||
| 2221 | * @return Socket |
||
| 2222 | */ |
||
| 2223 | public function setPipeSize($PipeSize) |
||
| 2228 | |||
| 2229 | /** |
||
| 2230 | * @return mixed |
||
| 2231 | */ |
||
| 2232 | public function getPriority() |
||
| 2236 | |||
| 2237 | /** |
||
| 2238 | * @param mixed $Priority |
||
| 2239 | * @return Socket |
||
| 2240 | */ |
||
| 2241 | public function setPriority($Priority) |
||
| 2246 | |||
| 2247 | /** |
||
| 2248 | * @return mixed |
||
| 2249 | */ |
||
| 2250 | public function getPrivateDevices() |
||
| 2254 | |||
| 2255 | /** |
||
| 2256 | * @param mixed $PrivateDevices |
||
| 2257 | * @return Socket |
||
| 2258 | */ |
||
| 2259 | public function setPrivateDevices($PrivateDevices) |
||
| 2264 | |||
| 2265 | /** |
||
| 2266 | * @return mixed |
||
| 2267 | */ |
||
| 2268 | public function getPrivateNetwork() |
||
| 2272 | |||
| 2273 | /** |
||
| 2274 | * @param mixed $PrivateNetwork |
||
| 2275 | * @return Socket |
||
| 2276 | */ |
||
| 2277 | public function setPrivateNetwork($PrivateNetwork) |
||
| 2282 | |||
| 2283 | /** |
||
| 2284 | * @return mixed |
||
| 2285 | */ |
||
| 2286 | public function getPrivateTmp() |
||
| 2290 | |||
| 2291 | /** |
||
| 2292 | * @param mixed $PrivateTmp |
||
| 2293 | * @return Socket |
||
| 2294 | */ |
||
| 2295 | public function setPrivateTmp($PrivateTmp) |
||
| 2300 | |||
| 2301 | /** |
||
| 2302 | * @return mixed |
||
| 2303 | */ |
||
| 2304 | public function getPrivateUsers() |
||
| 2308 | |||
| 2309 | /** |
||
| 2310 | * @param mixed $PrivateUsers |
||
| 2311 | * @return Socket |
||
| 2312 | */ |
||
| 2313 | public function setPrivateUsers($PrivateUsers) |
||
| 2318 | |||
| 2319 | /** |
||
| 2320 | * @return mixed |
||
| 2321 | */ |
||
| 2322 | public function getProtectControlGroups() |
||
| 2326 | |||
| 2327 | /** |
||
| 2328 | * @param mixed $ProtectControlGroups |
||
| 2329 | * @return Socket |
||
| 2330 | */ |
||
| 2331 | public function setProtectControlGroups($ProtectControlGroups) |
||
| 2336 | |||
| 2337 | /** |
||
| 2338 | * @return mixed |
||
| 2339 | */ |
||
| 2340 | public function getProtectHome() |
||
| 2344 | |||
| 2345 | /** |
||
| 2346 | * @param mixed $ProtectHome |
||
| 2347 | * @return Socket |
||
| 2348 | */ |
||
| 2349 | public function setProtectHome($ProtectHome) |
||
| 2354 | |||
| 2355 | /** |
||
| 2356 | * @return mixed |
||
| 2357 | */ |
||
| 2358 | public function getProtectKernelModules() |
||
| 2362 | |||
| 2363 | /** |
||
| 2364 | * @param mixed $ProtectKernelModules |
||
| 2365 | * @return Socket |
||
| 2366 | */ |
||
| 2367 | public function setProtectKernelModules($ProtectKernelModules) |
||
| 2372 | |||
| 2373 | /** |
||
| 2374 | * @return mixed |
||
| 2375 | */ |
||
| 2376 | public function getProtectKernelTunables() |
||
| 2380 | |||
| 2381 | /** |
||
| 2382 | * @param mixed $ProtectKernelTunables |
||
| 2383 | * @return Socket |
||
| 2384 | */ |
||
| 2385 | public function setProtectKernelTunables($ProtectKernelTunables) |
||
| 2390 | |||
| 2391 | /** |
||
| 2392 | * @return mixed |
||
| 2393 | */ |
||
| 2394 | public function getProtectSystem() |
||
| 2398 | |||
| 2399 | /** |
||
| 2400 | * @param mixed $ProtectSystem |
||
| 2401 | * @return Socket |
||
| 2402 | */ |
||
| 2403 | public function setProtectSystem($ProtectSystem) |
||
| 2408 | |||
| 2409 | /** |
||
| 2410 | * @return mixed |
||
| 2411 | */ |
||
| 2412 | public function getReceiveBuffer() |
||
| 2416 | |||
| 2417 | /** |
||
| 2418 | * @param mixed $ReceiveBuffer |
||
| 2419 | * @return Socket |
||
| 2420 | */ |
||
| 2421 | public function setReceiveBuffer($ReceiveBuffer) |
||
| 2426 | |||
| 2427 | /** |
||
| 2428 | * @return mixed |
||
| 2429 | */ |
||
| 2430 | public function getRemoveIPC() |
||
| 2434 | |||
| 2435 | /** |
||
| 2436 | * @param mixed $RemoveIPC |
||
| 2437 | * @return Socket |
||
| 2438 | */ |
||
| 2439 | public function setRemoveIPC($RemoveIPC) |
||
| 2444 | |||
| 2445 | /** |
||
| 2446 | * @return mixed |
||
| 2447 | */ |
||
| 2448 | public function getRemoveOnStop() |
||
| 2452 | |||
| 2453 | /** |
||
| 2454 | * @param mixed $RemoveOnStop |
||
| 2455 | * @return Socket |
||
| 2456 | */ |
||
| 2457 | public function setRemoveOnStop($RemoveOnStop) |
||
| 2462 | |||
| 2463 | /** |
||
| 2464 | * @return array |
||
| 2465 | */ |
||
| 2466 | public function getRequiredBy(): array |
||
| 2470 | |||
| 2471 | /** |
||
| 2472 | * @param array $RequiredBy |
||
| 2473 | * @return Socket |
||
| 2474 | */ |
||
| 2475 | public function setRequiredBy(array $RequiredBy): Socket |
||
| 2480 | |||
| 2481 | /** |
||
| 2482 | * @return array |
||
| 2483 | */ |
||
| 2484 | public function getRequires(): array |
||
| 2488 | |||
| 2489 | /** |
||
| 2490 | * @param array $Requires |
||
| 2491 | * @return Socket |
||
| 2492 | */ |
||
| 2493 | public function setRequires(array $Requires): Socket |
||
| 2498 | |||
| 2499 | /** |
||
| 2500 | * @return array |
||
| 2501 | */ |
||
| 2502 | public function getRequiresMountsFor(): array |
||
| 2506 | |||
| 2507 | /** |
||
| 2508 | * @param array $RequiresMountsFor |
||
| 2509 | * @return Socket |
||
| 2510 | */ |
||
| 2511 | public function setRequiresMountsFor(array $RequiresMountsFor): Socket |
||
| 2516 | |||
| 2517 | /** |
||
| 2518 | * @return mixed |
||
| 2519 | */ |
||
| 2520 | public function getRestrictNamespace() |
||
| 2524 | |||
| 2525 | /** |
||
| 2526 | * @param mixed $RestrictNamespace |
||
| 2527 | * @return Socket |
||
| 2528 | */ |
||
| 2529 | public function setRestrictNamespace($RestrictNamespace) |
||
| 2534 | |||
| 2535 | /** |
||
| 2536 | * @return mixed |
||
| 2537 | */ |
||
| 2538 | public function getRestrictRealtime() |
||
| 2542 | |||
| 2543 | /** |
||
| 2544 | * @param mixed $RestrictRealtime |
||
| 2545 | * @return Socket |
||
| 2546 | */ |
||
| 2547 | public function setRestrictRealtime($RestrictRealtime) |
||
| 2552 | |||
| 2553 | /** |
||
| 2554 | * @return mixed |
||
| 2555 | */ |
||
| 2556 | public function getResult() |
||
| 2560 | |||
| 2561 | /** |
||
| 2562 | * @param mixed $Result |
||
| 2563 | * @return Socket |
||
| 2564 | */ |
||
| 2565 | public function setResult($Result) |
||
| 2570 | |||
| 2571 | /** |
||
| 2572 | * @return mixed |
||
| 2573 | */ |
||
| 2574 | public function getReusePort() |
||
| 2578 | |||
| 2579 | /** |
||
| 2580 | * @param mixed $ReusePort |
||
| 2581 | * @return Socket |
||
| 2582 | */ |
||
| 2583 | public function setReusePort($ReusePort) |
||
| 2588 | |||
| 2589 | /** |
||
| 2590 | * @return mixed |
||
| 2591 | */ |
||
| 2592 | public function getRuntimeDirectoryMode() |
||
| 2596 | |||
| 2597 | /** |
||
| 2598 | * @param mixed $RuntimeDirectoryMode |
||
| 2599 | * @return Socket |
||
| 2600 | */ |
||
| 2601 | public function setRuntimeDirectoryMode($RuntimeDirectoryMode) |
||
| 2606 | |||
| 2607 | /** |
||
| 2608 | * @return mixed |
||
| 2609 | */ |
||
| 2610 | public function getSameProcessGroup() |
||
| 2614 | |||
| 2615 | /** |
||
| 2616 | * @param mixed $SameProcessGroup |
||
| 2617 | * @return Socket |
||
| 2618 | */ |
||
| 2619 | public function setSameProcessGroup($SameProcessGroup) |
||
| 2624 | |||
| 2625 | /** |
||
| 2626 | * @return mixed |
||
| 2627 | */ |
||
| 2628 | public function getSecureBits() |
||
| 2632 | |||
| 2633 | /** |
||
| 2634 | * @param mixed $SecureBits |
||
| 2635 | * @return Socket |
||
| 2636 | */ |
||
| 2637 | public function setSecureBits($SecureBits) |
||
| 2642 | |||
| 2643 | /** |
||
| 2644 | * @return mixed |
||
| 2645 | */ |
||
| 2646 | public function getSendBuffer() |
||
| 2650 | |||
| 2651 | /** |
||
| 2652 | * @param mixed $SendBuffer |
||
| 2653 | * @return Socket |
||
| 2654 | */ |
||
| 2655 | public function setSendBuffer($SendBuffer) |
||
| 2660 | |||
| 2661 | /** |
||
| 2662 | * @return mixed |
||
| 2663 | */ |
||
| 2664 | public function getSendSIGHUP() |
||
| 2668 | |||
| 2669 | /** |
||
| 2670 | * @param mixed $SendSIGHUP |
||
| 2671 | * @return Socket |
||
| 2672 | */ |
||
| 2673 | public function setSendSIGHUP($SendSIGHUP) |
||
| 2678 | |||
| 2679 | /** |
||
| 2680 | * @return mixed |
||
| 2681 | */ |
||
| 2682 | public function getSendSIGKILL() |
||
| 2686 | |||
| 2687 | /** |
||
| 2688 | * @param mixed $SendSIGKILL |
||
| 2689 | * @return Socket |
||
| 2690 | */ |
||
| 2691 | public function setSendSIGKILL($SendSIGKILL) |
||
| 2696 | |||
| 2697 | /** |
||
| 2698 | * @return mixed |
||
| 2699 | */ |
||
| 2700 | public function getSocketMode() |
||
| 2704 | |||
| 2705 | /** |
||
| 2706 | * @param mixed $SocketMode |
||
| 2707 | * @return Socket |
||
| 2708 | */ |
||
| 2709 | public function setSocketMode($SocketMode) |
||
| 2714 | |||
| 2715 | /** |
||
| 2716 | * @return mixed |
||
| 2717 | */ |
||
| 2718 | public function getSocketProtocol() |
||
| 2722 | |||
| 2723 | /** |
||
| 2724 | * @param mixed $SocketProtocol |
||
| 2725 | * @return Socket |
||
| 2726 | */ |
||
| 2727 | public function setSocketProtocol($SocketProtocol) |
||
| 2732 | |||
| 2733 | /** |
||
| 2734 | * @return mixed |
||
| 2735 | */ |
||
| 2736 | public function getStandardError() |
||
| 2740 | |||
| 2741 | /** |
||
| 2742 | * @param mixed $StandardError |
||
| 2743 | * @return Socket |
||
| 2744 | */ |
||
| 2745 | public function setStandardError($StandardError) |
||
| 2750 | |||
| 2751 | /** |
||
| 2752 | * @return mixed |
||
| 2753 | */ |
||
| 2754 | public function getStandardInput() |
||
| 2758 | |||
| 2759 | /** |
||
| 2760 | * @param mixed $StandardInput |
||
| 2761 | * @return Socket |
||
| 2762 | */ |
||
| 2763 | public function setStandardInput($StandardInput) |
||
| 2768 | |||
| 2769 | /** |
||
| 2770 | * @return mixed |
||
| 2771 | */ |
||
| 2772 | public function getStandardOutput() |
||
| 2776 | |||
| 2777 | /** |
||
| 2778 | * @param mixed $StandardOutput |
||
| 2779 | * @return Socket |
||
| 2780 | */ |
||
| 2781 | public function setStandardOutput($StandardOutput) |
||
| 2786 | |||
| 2787 | /** |
||
| 2788 | * @return mixed |
||
| 2789 | */ |
||
| 2790 | public function getStartupBlockIOWeight() |
||
| 2794 | |||
| 2795 | /** |
||
| 2796 | * @param mixed $StartupBlockIOWeight |
||
| 2797 | * @return Socket |
||
| 2798 | */ |
||
| 2799 | public function setStartupBlockIOWeight($StartupBlockIOWeight) |
||
| 2804 | |||
| 2805 | /** |
||
| 2806 | * @return mixed |
||
| 2807 | */ |
||
| 2808 | public function getStartupCPUShares() |
||
| 2812 | |||
| 2813 | /** |
||
| 2814 | * @param mixed $StartupCPUShares |
||
| 2815 | * @return Socket |
||
| 2816 | */ |
||
| 2817 | public function setStartupCPUShares($StartupCPUShares) |
||
| 2822 | |||
| 2823 | /** |
||
| 2824 | * @return mixed |
||
| 2825 | */ |
||
| 2826 | public function getStartupCPUWeight() |
||
| 2830 | |||
| 2831 | /** |
||
| 2832 | * @param mixed $StartupCPUWeight |
||
| 2833 | * @return Socket |
||
| 2834 | */ |
||
| 2835 | public function setStartupCPUWeight($StartupCPUWeight) |
||
| 2840 | |||
| 2841 | /** |
||
| 2842 | * @return mixed |
||
| 2843 | */ |
||
| 2844 | public function getStartupIOWeight() |
||
| 2848 | |||
| 2849 | /** |
||
| 2850 | * @param mixed $StartupIOWeight |
||
| 2851 | * @return Socket |
||
| 2852 | */ |
||
| 2853 | public function setStartupIOWeight($StartupIOWeight) |
||
| 2858 | |||
| 2859 | /** |
||
| 2860 | * @return mixed |
||
| 2861 | */ |
||
| 2862 | public function getSymlinks() |
||
| 2866 | |||
| 2867 | /** |
||
| 2868 | * @param mixed $Symlinks |
||
| 2869 | * @return Socket |
||
| 2870 | */ |
||
| 2871 | public function setSymlinks($Symlinks) |
||
| 2876 | |||
| 2877 | /** |
||
| 2878 | * @return mixed |
||
| 2879 | */ |
||
| 2880 | public function getSyslogFacility() |
||
| 2884 | |||
| 2885 | /** |
||
| 2886 | * @param mixed $SyslogFacility |
||
| 2887 | * @return Socket |
||
| 2888 | */ |
||
| 2889 | public function setSyslogFacility($SyslogFacility) |
||
| 2894 | |||
| 2895 | /** |
||
| 2896 | * @return mixed |
||
| 2897 | */ |
||
| 2898 | public function getSyslogLevel() |
||
| 2902 | |||
| 2903 | /** |
||
| 2904 | * @param mixed $SyslogLevel |
||
| 2905 | * @return Socket |
||
| 2906 | */ |
||
| 2907 | public function setSyslogLevel($SyslogLevel) |
||
| 2912 | |||
| 2913 | /** |
||
| 2914 | * @return mixed |
||
| 2915 | */ |
||
| 2916 | public function getSyslogLevelPrefix() |
||
| 2920 | |||
| 2921 | /** |
||
| 2922 | * @param mixed $SyslogLevelPrefix |
||
| 2923 | * @return Socket |
||
| 2924 | */ |
||
| 2925 | public function setSyslogLevelPrefix($SyslogLevelPrefix) |
||
| 2930 | |||
| 2931 | /** |
||
| 2932 | * @return mixed |
||
| 2933 | */ |
||
| 2934 | public function getSyslogPriority() |
||
| 2938 | |||
| 2939 | /** |
||
| 2940 | * @param mixed $SyslogPriority |
||
| 2941 | * @return Socket |
||
| 2942 | */ |
||
| 2943 | public function setSyslogPriority($SyslogPriority) |
||
| 2948 | |||
| 2949 | /** |
||
| 2950 | * @return mixed |
||
| 2951 | */ |
||
| 2952 | public function getSystemCallErrorNumber() |
||
| 2956 | |||
| 2957 | /** |
||
| 2958 | * @param mixed $SystemCallErrorNumber |
||
| 2959 | * @return Socket |
||
| 2960 | */ |
||
| 2961 | public function setSystemCallErrorNumber($SystemCallErrorNumber) |
||
| 2966 | |||
| 2967 | /** |
||
| 2968 | * @return mixed |
||
| 2969 | */ |
||
| 2970 | public function getTTYReset() |
||
| 2974 | |||
| 2975 | /** |
||
| 2976 | * @param mixed $TTYReset |
||
| 2977 | * @return Socket |
||
| 2978 | */ |
||
| 2979 | public function setTTYReset($TTYReset) |
||
| 2984 | |||
| 2985 | /** |
||
| 2986 | * @return mixed |
||
| 2987 | */ |
||
| 2988 | public function getTTYVHangup() |
||
| 2992 | |||
| 2993 | /** |
||
| 2994 | * @param mixed $TTYVHangup |
||
| 2995 | * @return Socket |
||
| 2996 | */ |
||
| 2997 | public function setTTYVHangup($TTYVHangup) |
||
| 3002 | |||
| 3003 | /** |
||
| 3004 | * @return mixed |
||
| 3005 | */ |
||
| 3006 | public function getTTYVTDisallocate() |
||
| 3010 | |||
| 3011 | /** |
||
| 3012 | * @param mixed $TTYVTDisallocate |
||
| 3013 | * @return Socket |
||
| 3014 | */ |
||
| 3015 | public function setTTYVTDisallocate($TTYVTDisallocate) |
||
| 3020 | |||
| 3021 | /** |
||
| 3022 | * @return mixed |
||
| 3023 | */ |
||
| 3024 | public function getTasksAccounting() |
||
| 3028 | |||
| 3029 | /** |
||
| 3030 | * @param mixed $TasksAccounting |
||
| 3031 | * @return Socket |
||
| 3032 | */ |
||
| 3033 | public function setTasksAccounting($TasksAccounting) |
||
| 3038 | |||
| 3039 | /** |
||
| 3040 | * @return mixed |
||
| 3041 | */ |
||
| 3042 | public function getTasksCurrent() |
||
| 3046 | |||
| 3047 | /** |
||
| 3048 | * @param mixed $TasksCurrent |
||
| 3049 | * @return Socket |
||
| 3050 | */ |
||
| 3051 | public function setTasksCurrent($TasksCurrent) |
||
| 3056 | |||
| 3057 | /** |
||
| 3058 | * @return mixed |
||
| 3059 | */ |
||
| 3060 | public function getTasksMax() |
||
| 3064 | |||
| 3065 | /** |
||
| 3066 | * @param mixed $TasksMax |
||
| 3067 | * @return Socket |
||
| 3068 | */ |
||
| 3069 | public function setTasksMax($TasksMax) |
||
| 3074 | |||
| 3075 | /** |
||
| 3076 | * @return mixed |
||
| 3077 | */ |
||
| 3078 | public function getTimeoutUSec() |
||
| 3082 | |||
| 3083 | /** |
||
| 3084 | * @param mixed $TimeoutUSec |
||
| 3085 | * @return Socket |
||
| 3086 | */ |
||
| 3087 | public function setTimeoutUSec($TimeoutUSec) |
||
| 3092 | |||
| 3093 | /** |
||
| 3094 | * @return mixed |
||
| 3095 | */ |
||
| 3096 | public function getTimerSlackNSec() |
||
| 3100 | |||
| 3101 | /** |
||
| 3102 | * @param mixed $TimerSlackNSec |
||
| 3103 | * @return Socket |
||
| 3104 | */ |
||
| 3105 | public function setTimerSlackNSec($TimerSlackNSec) |
||
| 3110 | |||
| 3111 | /** |
||
| 3112 | * @return mixed |
||
| 3113 | */ |
||
| 3114 | public function getTransparent() |
||
| 3118 | |||
| 3119 | /** |
||
| 3120 | * @param mixed $Transparent |
||
| 3121 | * @return Socket |
||
| 3122 | */ |
||
| 3123 | public function setTransparent($Transparent) |
||
| 3128 | |||
| 3129 | /** |
||
| 3130 | * @return mixed |
||
| 3131 | */ |
||
| 3132 | public function getTriggerLimitBurst() |
||
| 3136 | |||
| 3137 | /** |
||
| 3138 | * @param mixed $TriggerLimitBurst |
||
| 3139 | * @return Socket |
||
| 3140 | */ |
||
| 3141 | public function setTriggerLimitBurst($TriggerLimitBurst) |
||
| 3146 | |||
| 3147 | /** |
||
| 3148 | * @return mixed |
||
| 3149 | */ |
||
| 3150 | public function getTriggerLimitIntervalSec() |
||
| 3154 | |||
| 3155 | /** |
||
| 3156 | * @param mixed $TriggerLimitIntervalSec |
||
| 3157 | * @return Socket |
||
| 3158 | */ |
||
| 3159 | public function setTriggerLimitIntervalSec($TriggerLimitIntervalSec) |
||
| 3164 | |||
| 3165 | /** |
||
| 3166 | * @return mixed |
||
| 3167 | */ |
||
| 3168 | public function getTriggerLimitIntervalUSec() |
||
| 3172 | |||
| 3173 | /** |
||
| 3174 | * @param mixed $TriggerLimitIntervalUSec |
||
| 3175 | * @return Socket |
||
| 3176 | */ |
||
| 3177 | public function setTriggerLimitIntervalUSec($TriggerLimitIntervalUSec) |
||
| 3182 | |||
| 3183 | /** |
||
| 3184 | * @return array |
||
| 3185 | */ |
||
| 3186 | public function getTriggers(): array |
||
| 3190 | |||
| 3191 | /** |
||
| 3192 | * @param array $Triggers |
||
| 3193 | * @return Socket |
||
| 3194 | */ |
||
| 3195 | public function setTriggers(array $Triggers): Socket |
||
| 3200 | |||
| 3201 | /** |
||
| 3202 | * @return mixed |
||
| 3203 | */ |
||
| 3204 | public function getUID() |
||
| 3208 | |||
| 3209 | /** |
||
| 3210 | * @param mixed $UID |
||
| 3211 | * @return Socket |
||
| 3212 | */ |
||
| 3213 | public function setUID($UID) |
||
| 3218 | |||
| 3219 | /** |
||
| 3220 | * @return mixed |
||
| 3221 | */ |
||
| 3222 | public function getUMask() |
||
| 3226 | |||
| 3227 | /** |
||
| 3228 | * @param mixed $UMask |
||
| 3229 | * @return Socket |
||
| 3230 | */ |
||
| 3231 | public function setUMask($UMask) |
||
| 3236 | |||
| 3237 | /** |
||
| 3238 | * @return mixed |
||
| 3239 | */ |
||
| 3240 | public function getUnitFilePreset() |
||
| 3244 | |||
| 3245 | /** |
||
| 3246 | * @param mixed $UnitFilePreset |
||
| 3247 | * @return Socket |
||
| 3248 | */ |
||
| 3249 | public function setUnitFilePreset($UnitFilePreset) |
||
| 3254 | |||
| 3255 | /** |
||
| 3256 | * @return mixed |
||
| 3257 | */ |
||
| 3258 | public function getUnitFileState() |
||
| 3262 | |||
| 3263 | /** |
||
| 3264 | * @param mixed $UnitFileState |
||
| 3265 | * @return Socket |
||
| 3266 | */ |
||
| 3267 | public function setUnitFileState($UnitFileState) |
||
| 3272 | |||
| 3273 | /** |
||
| 3274 | * @return mixed |
||
| 3275 | */ |
||
| 3276 | public function getUtmpMode() |
||
| 3280 | |||
| 3281 | /** |
||
| 3282 | * @param mixed $UtmpMode |
||
| 3283 | * @return Socket |
||
| 3284 | */ |
||
| 3285 | public function setUtmpMode($UtmpMode) |
||
| 3290 | |||
| 3291 | /** |
||
| 3292 | * @return array |
||
| 3293 | */ |
||
| 3294 | public function getWantedBy(): array |
||
| 3298 | |||
| 3299 | /** |
||
| 3300 | * @param array $WantedBy |
||
| 3301 | * @return Socket |
||
| 3302 | */ |
||
| 3303 | public function setWantedBy(array $WantedBy): Socket |
||
| 3308 | |||
| 3309 | /** |
||
| 3310 | * @return mixed |
||
| 3311 | */ |
||
| 3312 | public function getWritable() |
||
| 3316 | |||
| 3317 | /** |
||
| 3318 | * @param mixed $Writable |
||
| 3319 | * @return Socket |
||
| 3320 | */ |
||
| 3321 | public function setWritable($Writable) |
||
| 3326 | } |
||
| 3327 |