Difference between revisions of "love.thread.getChannel (Français)"
(traduction de en:) |
(→Voir également) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{newin|[[0.9.0]]|090|type=function}} | + | {{newin (Français)|[[0.9.0]]|090|type=function}} |
Crée et récupère un channel (canal) de thread (fil d'exécution) nommé. | Crée et récupère un channel (canal) de thread (fil d'exécution) nommé. | ||
== Fonction == | == Fonction == | ||
Line 13: | Line 13: | ||
=== Communication entre main/thread === | === Communication entre main/thread === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | -- main (principal) | + | -- main (programme principal) |
thread = love.thread.newThread ( "thread.lua" ); | thread = love.thread.newThread ( "thread.lua" ); | ||
thread:start (); | thread:start (); | ||
Line 44: | Line 44: | ||
== Voir également == | == Voir également == | ||
− | * [[parent::love.thread]] | + | * [[parent::love.thread (Français)]] |
− | * [[Constructs::Channel]] | + | * [[Constructs::Channel (Français)]] |
− | [[Category:Functions]] | + | [[Category:Functions (Français)]] |
{{#set:Description=Crée ou récupère un channel de thread nomée.}} | {{#set:Description=Crée ou récupère un channel de thread nomée.}} | ||
+ | {{#set:Since=090}} | ||
+ | |||
== Autres langues == | == Autres langues == | ||
{{i18n|love.thread.getChannel}} | {{i18n|love.thread.getChannel}} |
Latest revision as of 12:07, 24 September 2021
Disponible depuis LÖVE 0.9.0 |
Ce-tte function n'est pas supporté-e par des versions plus anciennes. |
Crée et récupère un channel (canal) de thread (fil d'exécution) nommé.
Contents
Fonction
Synopsis
channel = love.thread.getChannel( name )
Arguments
string name
- Le nom du channel que vous désirez créer ou récupérer.
Retours
Channel channel
- L'objet channel associé au nom.
Exemples
Communication entre main/thread
-- main (programme principal)
thread = love.thread.newThread ( "thread.lua" );
thread:start ();
channel = {};
channel.a = love.thread.getChannel ( "a" );
channel.b = love.thread.getChannel ( "b" );
channel.b:push ( "foo" );
function love.update ( dt )
local v = channel.a:pop ();
if v then
print ( tostring ( v ) );
channel.b:push ( "foo" );
end
end
-- thread
channel = {};
channel.a = love.thread.getChannel ( "a" );
channel.b = love.thread.getChannel ( "b" );
while true do
local v = channel.b:pop ();
if v then
print ( tostring ( v ) );
channel.a:push ( "bar" );
end
end
Voir également
Autres langues
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info