DispatchPayload3
Overloads the generic dispatcher to call back a method with three payloads More...
Inherits from:
UnityEngine.XR.MagicLeap.Native.MLThreadDispatch.Dispatcher
Detailed Description
private template <A ,B ,C > class DispatchPayload3 : Dispatcher
Template Parameters:
AFirst payload typeBSecond payload typeCThird payload type
Public Methods
override void Dispatch
Dispatches the previously stored callback with the supplied payloads
public override void Dispatch()
DispatchPayload3
Initializes a new instance of the DispatchPayload3<A,B,C> class with the supplied callback and payloads
public DispatchPayload3(
A payload1,
B payload2,
C payload3,
System.Action< A, B, C > action
)
Parameters
| Type | Name | Description |
|---|---|---|
| A | payload1 | First payload |
| B | payload2 | Second payload |
| C | payload3 | Third payload |
| System.Action< A, B, C > | action | Method to dispatch |