Difference between revisions of "love.thread.newThread"

m (Other languages template added)
m (Update description.)
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{newin|[[0.7.0]]|type=function}}
+
{{newin|[[0.7.0]]|070|type=function}}
Creates a new Thread from a [[File]] or [[Data]] Object.
+
Creates a new Thread from a filename, string or [[FileData]] object containing Lua code.
 +
 
 
== Function==
 
== Function==
 +
{{newin|[[0.9.0]]|090|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
thread = love.thread.newThread( filename )
 +
</source>
 +
=== Arguments ===
 +
{{param|string|filename|The name of the Lua file to use as the source.}}
 +
=== Returns ===
 +
{{param|Thread|thread|A new Thread that has yet to be started.}}
 +
 +
== Function ==
 +
{{newin|[[0.9.0]]|090|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
thread = love.thread.newThread( fileData )
 +
</source>
 +
=== Arguments ===
 +
{{param|FileData|fileData|The FileData containing the Lua code to use as the source.}}
 +
=== Returns ===
 +
{{param|Thread|thread|A new Thread that has yet to be started.}}
 +
 +
== Function ==
 +
{{newin|[[0.9.2]]|092|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
thread = love.thread.newThread( codestring )
 +
</source>
 +
=== Arguments ===
 +
{{param|string|codestring|A string containing the Lua code to use as the source. It needs to either be at least 1024 characters long, or contain at least one newline.}}
 +
=== Returns ===
 +
{{param|Thread|thread|A new Thread that has yet to be started.}}
 +
 +
== Function==
 +
{{oldin|[[0.9.0]]|090|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 11: Line 46:
 
=== Returns ===
 
=== Returns ===
 
{{param|Thread|thread|A new Thread that has yet to be started.}}
 
{{param|Thread|thread|A new Thread that has yet to be started.}}
 +
 
== Function ==
 
== Function ==
 +
{{oldin|[[0.9.0]]|090|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 21: Line 58:
 
=== Returns ===
 
=== Returns ===
 
{{param|Thread|thread|A new Thread that has yet to be started.}}
 
{{param|Thread|thread|A new Thread that has yet to be started.}}
 +
 
== Function ==
 
== Function ==
 +
{{oldin|[[0.9.0]]|090|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 36: Line 75:
 
* [[Constructs::Thread]]
 
* [[Constructs::Thread]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Creates a new Thread from a [[File]] or [[Data]] Object.
+
{{#set:Description=Creates a new Thread from a filename, string or [[FileData]] object containing Lua code.}}
}}
 
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.thread.newThread}}
 
{{i18n|love.thread.newThread}}

Revision as of 07:45, 21 June 2019

Available since LÖVE 0.7.0
This function is not supported in earlier versions.

Creates a new Thread from a filename, string or FileData object containing Lua code.

Function

Available since LÖVE 0.9.0
This variant is not supported in earlier versions.

Synopsis

thread = love.thread.newThread( filename )

Arguments

string filename
The name of the Lua file to use as the source.

Returns

Thread thread
A new Thread that has yet to be started.

Function

Available since LÖVE 0.9.0
This variant is not supported in earlier versions.

Synopsis

thread = love.thread.newThread( fileData )

Arguments

FileData fileData
The FileData containing the Lua code to use as the source.

Returns

Thread thread
A new Thread that has yet to be started.

Function

Available since LÖVE 0.9.2
This variant is not supported in earlier versions.

Synopsis

thread = love.thread.newThread( codestring )

Arguments

string codestring
A string containing the Lua code to use as the source. It needs to either be at least 1024 characters long, or contain at least one newline.

Returns

Thread thread
A new Thread that has yet to be started.

Function

Removed in LÖVE 0.9.0
This variant is not supported in that and later versions.

Synopsis

thread = love.thread.newThread( name, filename )

Arguments

string name
The name of the thread.
string filename
The name of the File to use as source.

Returns

Thread thread
A new Thread that has yet to be started.

Function

Removed in LÖVE 0.9.0
This variant is not supported in that and later versions.

Synopsis

thread = love.thread.newThread( name, file )

Arguments

string name
The name of the thread.
File file
The file to use as source.

Returns

Thread thread
A new Thread that has yet to be started.

Function

Removed in LÖVE 0.9.0
This variant is not supported in that and later versions.

Synopsis

thread = love.thread.newThread( name, data )

Arguments

string name
The name of the thread.
Data data
The data to use as source.

Returns

Thread thread
A new Thread that has yet to be started.

See Also

Other Languages