love.thread (Français)

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

Vous permet d'utiliser les threads.

O.png love.graphics et love.thread ne fonctionne pas bien ensemble. N'appelez pas les fonctions love.graphics depuis un Thread.  


Types

ChannelAn object which can be used to send and receive data between different threads.
ThreadA Thread represents a thread.

Fonctions

love.thread.getChannelCreates or retrieves a named thread channel.
love.thread.getThreadLook for a thread and get its object.
love.thread.getThreadsGet all threads.
love.thread.newChannelCreates a new unnamed thread channel.
love.thread.newThreadCreates a new Thread from a filename, string or FileData object containing Lua code.

See Also

Other Languages