Difference between revisions of "love.threaderror (한국어)"

(Created page with "{{newin|0.9.0|090|type=callback}} 스레드에서 에러가 발생했을 때 호출되는 콜백 함수입니다. == 함수 == === 형식 === <source l...")
 
m
 
Line 27: Line 27:
 
* [[parent::love (한국어)]]
 
* [[parent::love (한국어)]]
 
[[Category:Callbacks]]
 
[[Category:Callbacks]]
{{#set:Description=[[Thread (한국어)|스레드]]에서 에러가 발생했을 때 호출되는 콜백 함수입니다.}}
+
{{#set:Description=스레드에서 에러가 발생했을 때 호출되는 콜백 함수입니다.}}
 
{{#set:Subcategory=General}}
 
{{#set:Subcategory=General}}
 
== 다른 언어 ==
 
== 다른 언어 ==
 
{{i18n|love.threaderror}}
 
{{i18n|love.threaderror}}

Latest revision as of 06:22, 23 January 2014

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

스레드에서 에러가 발생했을 때 호출되는 콜백 함수입니다.

함수

형식

love.threaderror( thread, errorstr )

매개변수

Thread (한국어) thread
에러가 발생한 스레드.
string (한국어) errorstr
에러 메시지.

리턴값

없음.

예제

function love.load()
  mythread = love.thread.newThread("thread.lua")
  mythread:start()
end

function love.threaderror(thread, errorstr)
  print("Thread error!\n"..errorstr)
  -- thread:getError() 또한 같은 문자열을 리턴할 것입니다.
end

같이 보기


다른 언어