Difference between revisions of "Thread:sendData"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' 2018.10<br/>
'''<translate>Available since</translate>:''' 2018.10<br/>
+
'''Class:''' [[Thread]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/Thread|Thread]]<br/>
 
  
=== <translate>Description</translate> ===
+
=== Description ===
<translate>Sends data for retrieval by main thread (only a valid call inside thread function). Adds values onto a stack which are retrieved by
+
Sends data for retrieval by main thread (only a valid call inside thread function).
the next call to fetchData from the main thread.
+
<source lang="lua">
</translate><br/>
+
Thread.sendData(...)
<source lang="lua">Thread.sendData(...)</source>
+
</source>
  
=== <translate>Parameters</translate> ===
+
Adds values onto a stack which are retrieved by the next call to fetchData from the main thread.
'''...: ''' ''(misc)'' <translate>variables to add to send stack</translate><br/>
+
 
=== <translate>Return values</translate> ===
+
=== Parameters ===
''<translate>none</translate>''<br/>
+
'''...: ''' ''(misc)'' variables to add to send stack<br/>
  
 
{{Thread}}
 
{{Thread}}

Revision as of 05:50, 11 June 2023

Available since: 2018.10
Class: Thread

Description

Sends data for retrieval by main thread (only a valid call inside thread function).

Thread.sendData(...)

Adds values onto a stack which are retrieved by the next call to fetchData from the main thread.

Parameters

...: (misc) variables to add to send stack