RSX Code Reference
Preparing search index...
rsx
RpcMethodMulticast
Type Alias RpcMethodMulticast<TArgs, TReturn>
RpcMethodMulticast
:
(
this
:
Component
,
...
args
:
TArgs
,
)
=>
RpcMulticastPromise
<
TReturn
>
Type helper for multicast RPC scoped to
NetRpcScope.Multicast
method that enforces:
The method must be an instance method (not static) via the
this: Component
constraint
The method must return a Promise that resolves to an array of results from each client that executed the RPC.
Type Parameters
TArgs
extends
any
[]
TReturn
Type Declaration
(
this
:
Component
,
...
args
:
TArgs
)
:
RpcMulticastPromise
<
TReturn
>
Parameters
this
:
Component
...
args
:
TArgs
Returns
RpcMulticastPromise
<
TReturn
>
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
RSX Code Reference
Loading...
Type helper for multicast RPC scoped to NetRpcScope.Multicast method that enforces:
this: Componentconstraint