SetTime (PersistentObjectInfo function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
mNo edit summary
Line 5: Line 5:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th><td>string</td></tr>
<tr><th>%string</th><td> A string variable to contain the time of the setting of the object.</td></tr>
<tr><th>persObjList</th>
<tr><th>persObjList</th>
<td>PersistentObjectInfo object</td></tr>
<td>PersistentObjectInfo object</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
<var>SetTime</var> is intended for debugging and problem diagnosis and not for application purposes.
For Global/Session variable declarations,
<var>SetTime</var> does '''not''' change if request <code>A</code> sets a variable to an object
instance, and then request <code>B</code> sets it to a new value, <var>SetTime</var> still indicates
the time the object reference was set in request <code>A</code>.
 
==See also==
==See also==
{{Template:PersistentObjectInfo:SetTime footer}}
{{Template:PersistentObjectInfo:SetTime footer}}

Revision as of 00:20, 16 August 2011

Time object was set (YYYYMMDDHHMISSXXX format) (PersistentObjectInfo class)

[Introduced in Sirius Mods 7.8]


Syntax

%string = persObjInfo:SetTime

Syntax terms

%string A string variable to contain the time of the setting of the object.
persObjList PersistentObjectInfo object

Usage notes

SetTime is intended for debugging and problem diagnosis and not for application purposes. For Global/Session variable declarations, SetTime does not change if request A sets a variable to an object instance, and then request B sets it to a new value, SetTime still indicates the time the object reference was set in request A.

See also