os.pullEventRaw

Duplicate of coroutine.yield. Under OS execution, takes argument filter and waits for the current process to be resumed with a vararg list where the first element matches filter. Under sandboxed execution, returns {...} to the application that has resumed the process. Unlike os.pullEvent, it does not stop the application upon a "terminate" event

ExampleGet mouse_click event
Prints a mouse_click event
Code
local event, e1 = os.pullEventRaw("mouse_click")
print(event)
print(e1)
ExampleGet terminate event
Prints a terminate event
Code
local event, e1 = os.pullEventRaw("terminate")
print(event)

os.pullEventRaw
Function
Syntax
os.pullEventRaw(
  • filter? : string
  • {...}
)

Returns {...}
API os
Source CC:Tweaked
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.