Söz dizimi
Signal.new(): RealSignalDönüşler
| Ad | Tip | Açıklama |
|---|---|---|
signal | RealSignal | New signal object with its own connection and waiter lists. |
Açıklama
Creates a new RealSignal object. The returned signal exposes Connect, Once, Wait, and Fire methods.
Parametresiz cagir. Fonksiyon gerekli contexti mevcut runtime durumundan okur.
signal (RealSignal) dondurur. Basarili degerleri, nil sonuclari ve toparlanabilir hatalari ayirmak icin return tablosunu kullan.
Örnek
Create an independent RealSignal and fire it with values.
local signal = Signal.new()
signal:Connect(function(value)
print(value)
end)
signal:Fire("ready")Tipler
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.