ไวยากรณ์
RealSignal.Once(signal: RealSignal, callback: (....any) -> ()): RealSignalConnectionArguments
| ชื่อ | ชนิด | คำอธิบาย |
|---|---|---|
signal | RealSignal | Signal object returned by Signal.new. |
callback | (....any) -> () | Function called at most once for this connection. |
Returns
| ชื่อ | ชนิด | คำอธิบาย |
|---|---|---|
connection | RealSignalConnection | Connection object with Disconnect. |
คำอธิบาย
Connects a callback that is disconnected before its first callback invocation. The callback receives the arguments passed to Fire.
เรียกด้วย parameter 2 ค่า: signal, callback ตาราง arguments อธิบายค่าที่จำเป็นและค่าที่ปรับพฤติกรรม
ส่งคืน connection (RealSignalConnection) ใช้ตาราง returns เพื่อแยกค่าที่สำเร็จ ผลลัพธ์ nil และ error ที่จัดการต่อได้
ตัวอย่าง
Connect a callback that runs at most once.
local signal = Signal.new()
signal:Once(function(value)
print(value)
end)
signal:Fire("first")
signal:Fire("second")Types
RealSignal
Signal object returned by Signal.new.
Connect (callback: (...any) -> ()) -> RealSignalConnection Adds a callback that runs when Fire is called.Once (callback: (...any) -> ()) -> RealSignalConnection Adds a callback that is disconnected before its first callback invocation.Wait () -> ...any Yields until Fire resumes the waiter with the fired values.Fire (...values: any) -> () Runs connected callbacks and resumes waiters with the provided values.RealSignalConnection
Connection object returned by RealSignal.Connect and RealSignal.Once.
Disconnect () -> () Disconnects the connection.