Skip to main content
Version: 20 Mar 2024

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:

  • A First payload type
  • B Second payload type
  • C Third 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

TypeNameDescription
Apayload1First payload
Bpayload2Second payload
Cpayload3Third payload
System.Action< A, B, C >actionMethod to dispatch