Interface: IWSDKSignalLike<TValue>
Defined in: service-framework-iwsdk/src/iwsdk-host.ts:25
IWSDK exposes reactive values as { value } signals. The bridge only reads
.value; the adapter also subscribes when the signal supports it, which is
how it learns that a session came or went without polling every frame.
Type Parameters
| Type Parameter |
|---|
TValue |
Properties
| Property | Modifier | Type | Defined in |
|---|---|---|---|
value | readonly | TValue | service-framework-iwsdk/src/iwsdk-host.ts:26 |
Methods
subscribe()?
optional subscribe(listener: (value: TValue) => void): () => void;
Defined in: service-framework-iwsdk/src/iwsdk-host.ts:28
Optional push notification. Returns an unsubscribe handle.
Parameters
| Parameter | Type |
|---|---|
listener | (value: TValue) => void |
Returns
() => void