SetObject (System function)

From m204wiki
Revision as of 00:26, 16 February 2014 by JALWiccan (talk | contribs) (Automatically generated page update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Set a system-wide object (System class)

SetObject sets a "system-wide object".

Syntax

[%gen =] %(System):SetObject( name, object, [testGen])

Syntax terms

%genThe new generation number associated with name. This is a positive integer (set to 1 the first time the method succeeds) that increases by one each time the name object is updated. gen is set to 0 if the method encounters a problem or if testGen differs from the current generation number of name.

All other errors result in request cancellation.

%(System) The class name in parentheses denotes a shared method. SetObject can also be invoked via a System object variable, which may be null.
name The string name by which the system-wide object is identified.
object The object variable that becomes the current system-wide object. The object referenced by object must be "deep copyable").
testGen An optional argument, this is an integer that is compared to the current generation number of name. If the values differ, SetObject fails to replace object, and it returns a 0 value.

Examples

The following example shows how the generation number can be used to make sure that you do not update an object that someone else updated after you got your copy.

%myObj is object myClass ... retry: %gen = %(system):getObject('FOO', %myObj) ... fiddle with the object * Now try to update it if not %(system):setObject('FOO', %myObj, %gen) then * Someone else changed it, let's see what they did jump to retry end if

In this case, when you try to update FOO, FOO's generation is compared with %gen. If the generation number changed, the SetObject call does not succeed, and 0 is returned.

See also