ServerSocket (UdpSocket function): Difference between revisions
Jump to navigation
Jump to search
m (→Syntax terms) |
m (→Usage notes) |
||
Line 25: | Line 25: | ||
</p> | </p> | ||
<li> | <li>The <var>ServerSocket</var> method turns the server socket into a client | ||
socket so that any server activity (line input, etc.) results in request | socket so that any server activity (line input, etc.) results in request | ||
cancellation for any subsequent ServerSocket calls and logout for | cancellation for any subsequent ServerSocket calls and logout for |
Revision as of 23:20, 10 December 2012
Get server UdpSocket object (UdpSocket class)
[Introduced in Sirius Mods 8.0]
This page is under construction.
Syntax
%udpSocket = [%(UdpSocket):]ServerSocket
Syntax terms
%outUdpSocket | A UdpSocket object. |
---|---|
[%(UdpSocket):] | The optional class name in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking a virtual constructor. |
Usage notes
- ServerSocket is a virtual constructor and as such can be called with no method object, with an explicit class name, or with an object variable, even if that object is Null:
%udpSock = ServerSocket %udpSock = %(UdpSocket):ServerSocket %udpSock = %udpSock:ServerSocket
- The ServerSocket method turns the server socket into a client socket so that any server activity (line input, etc.) results in request cancellation for any subsequent ServerSocket calls and logout for any line input.