-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathcallbacks.lock.xml
More file actions
39 lines (33 loc) · 1.11 KB
/
callbacks.lock.xml
File metadata and controls
39 lines (33 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<entry name="callbacks.lock" type="method" return="Callbacks">
<title>callbacks.lock()</title>
<signature>
<added>1.7</added>
</signature>
<desc>Lock a callback list in its current state.</desc>
<longdesc>
<p>This method returns the Callbacks object onto which it is attached (<code>this</code>). </p>
</longdesc>
<example>
<desc>Using <code>callbacks.lock()</code> to lock a callback list to avoid further changes being made to the list state:</desc>
<code><![CDATA[// a sample logging function to be added to a callbacks list
var foo = function( value ){
console.log( 'foo:' + value);
}
var callbacks = $.Callbacks();
// add the logging function to the callback list
callbacks.add( foo );
// fire the items on the list, passing an argument
callbacks.fire( 'hello' );
// outputs 'foo: hello'
// lock the callbacks list
callbacks.lock();
// try firing the items again
callbacks.fire( 'world' );
// as the list was locked, no items
// were called so 'world' isn't logged
]]></code>
</example>
<category slug="callbacks-object"/>
<category slug="version/1.7"/>
</entry>