ServerSocket (UdpSocket function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%outUdpSocket</th>
<tr><th>%outUdpSocket</th>
<td><var>UdpSocket</var> object</td></tr>
<td>A <var>UdpSocket</var> object.</td></tr>


<tr><th nowrap="true"><var>[%(UdpSocket):]</var></th>
<tr><th nowrap="true"><var>[%(UdpSocket):]</var></th>
Line 17: Line 17:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>This method turns the server socket into a client       
<li><var>ServerSocket</var> is a [[Object variables#Virtual Constructor methods|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 <var>Null</var>:
socket so that any server activity (line input, etc.) results in request
<p class="code">%udpSock = ServerSocket
cancellation for any subsequent ServerSocket calls and logout for
 
any line input.                                                   
%udpSock = %(UdpSocket):ServerSocket
 
%udpSock = %udpSock:ServerSocket
</p>
 
<li>The <var>ServerSocket</var> method turns the server socket into a client       
socket &mdash; any server activity (line input, etc.) results in request
cancellation for any subsequent <var>ServerSocket</var> calls and results in logout for any line input.                                                   
</ul>
</ul>



Latest revision as of 23:23, 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 — any server activity (line input, etc.) results in request cancellation for any subsequent ServerSocket calls and results in logout for any line input.

Examples

See also