StopResource: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
This function stops a running resource. | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool stopResource ( resource ) | bool stopResource ( resource theResource ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theResource:''' the [[resource]] we want to stop. | |||
*''' | |||
===Returns=== | ===Returns=== | ||
Returns ''true'' if the resource was stopped, ''false'' if the stopping failed, or an invalid resource was passed. | |||
Returns ''true'' if | |||
==Example== | ==Example== | ||
This function stops all running resources. | |||
This | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | function stopAllResources() | ||
--we store a table of resources | |||
-- | local allResources = getResources() | ||
--for each one of them, | |||
for index, resource in allResources do | |||
--if it's running, | |||
if getResourceState(resource) == "running" then | |||
--then stop it | |||
stopResource(resource) | |||
end | |||
end | |||
end | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Resource_functions}} | |||
{{ | |||
Revision as of 11:41, 22 April 2007
This function stops a running resource.
Syntax
bool stopResource ( resource theResource )
Required Arguments
- theResource: the resource we want to stop.
Returns
Returns true if the resource was stopped, false if the stopping failed, or an invalid resource was passed.
Example
This function stops all running resources.
function stopAllResources() --we store a table of resources local allResources = getResources() --for each one of them, for index, resource in allResources do --if it's running, if getResourceState(resource) == "running" then --then stop it stopResource(resource) end end end
See Also
- abortRemoteRequest
- call
- fetchRemote
- getResourceConfig
- getResourceDynamicElementRoot
- getResourceExportedFunctions
- getResourceFromName
- getResourceName
- getResourceRootElement
- getResourceState
- getThisResource
- getRemoteRequests
- getRemoteRequestInfo