GetLatentEventHandles: Difference between revisions
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
==Example== | ==Example== | ||
<section name="Example 1 - 1/2" class="client" show="true"> | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | -- Cancel triggerLatentServerEvent directly after execution. | ||
addCommandHandler("cancelLatentEvent", | |||
function () | |||
triggerLatentServerEvent("exampleEvent",3000,false,localPlayer) | |||
local handles = getLatentEventHandles() | |||
local handle = handles[#handles] -- Get the latest handle. | |||
if cancelLatentEvent(handle) then -- Cancel it! | |||
outputChatBox("Successfully cancelled!",0,200,0) | |||
end | |||
end) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | |||
<section name="Example 1 - 2/2" class="server" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
addEvent("exampleEvent",true) | |||
addEventHandler("exampleEvent",root, | |||
function () | |||
outputChatBox("Warning! The triggerLatentServerEvent wasn't cancelled!",client,255,0,0) -- warn the user. | |||
end) | |||
</syntaxhighlight> | |||
</section> | |||
<section name="Example 2" class="server" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
-- Cancel all my triggerLatentClientEvent's. | |||
addCommandHandler("cancelLatentEvents", | |||
function (player) | |||
-- Get all active handles from the player that executed the command: cancelLatentEvents | |||
local handles = getLatentEventHandles (player) | |||
for index=1,#handles do -- Loop through the table. | |||
local handle = handles[index] | |||
cancelLatentEvent(player,handle) -- Cancel it! | |||
end | |||
end) | |||
</syntaxhighlight> | |||
</section> | |||
<section name="Example 3" class="client" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
-- Cancel all my triggerLatentServerEvent's. | |||
addCommandHandler("cancelLatentEvents", | |||
function () | |||
-- Get all active handles from you, when you executed the command: cancelLatentEvents | |||
local handles = getLatentEventHandles () | |||
for index=1,#handles do -- Loop through the table. | |||
local handle = handles[index] | |||
cancelLatentEvent(handle) -- Cancel it! | |||
end | |||
end) | |||
</syntaxhighlight> | |||
</section> | |||
==Requirements== | ==Requirements== |
Revision as of 11:52, 30 October 2015
Gets the currently queued latent events. The last one in the table is always the latest event queued. Each returned handle can be used with getLatentEventStatus or cancelLatentEvent
Syntax
Click to collapse [-]
Servertable getLatentEventHandles ( player thePlayer )
Required Arguments
- thePlayer: The player who is receiving the events.
Click to collapse [-]
Clienttable getLatentEventHandles ( )
Returns
Returns a table of handles or false if invalid arguments were passed.
Example
Click to collapse [-]
Example 1 - 1/2-- Cancel triggerLatentServerEvent directly after execution. addCommandHandler("cancelLatentEvent", function () triggerLatentServerEvent("exampleEvent",3000,false,localPlayer) local handles = getLatentEventHandles() local handle = handles[#handles] -- Get the latest handle. if cancelLatentEvent(handle) then -- Cancel it! outputChatBox("Successfully cancelled!",0,200,0) end end)
Click to collapse [-]
Example 1 - 2/2addEvent("exampleEvent",true) addEventHandler("exampleEvent",root, function () outputChatBox("Warning! The triggerLatentServerEvent wasn't cancelled!",client,255,0,0) -- warn the user. end)
Click to collapse [-]
Example 2-- Cancel all my triggerLatentClientEvent's. addCommandHandler("cancelLatentEvents", function (player) -- Get all active handles from the player that executed the command: cancelLatentEvents local handles = getLatentEventHandles (player) for index=1,#handles do -- Loop through the table. local handle = handles[index] cancelLatentEvent(player,handle) -- Cancel it! end end)
Click to collapse [-]
Example 3-- Cancel all my triggerLatentServerEvent's. addCommandHandler("cancelLatentEvents", function () -- Get all active handles from you, when you executed the command: cancelLatentEvents local handles = getLatentEventHandles () for index=1,#handles do -- Loop through the table. local handle = handles[index] cancelLatentEvent(handle) -- Cancel it! end end)
Requirements
This template will be deleted.
See Also
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled