| GameLiftManagerQForMainThreadT1 Method (ActionT1, T1) |
Queue a function to be called on the Unity thread that contains 1 parameter
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax private void QForMainThread<T1>(
Action<T1> fn,
T1 p1
)
Private Sub QForMainThread(Of T1) (
fn As Action(Of T1),
p1 As T1
)
private:
generic<typename T1>
void QForMainThread(
Action<T1>^ fn,
T1 p1
)
private member QForMainThread :
fn : Action<'T1> *
p1 : 'T1 -> unit
Parameters
- fn
- Type: SystemActionT1
The name of the function to be called - p1
- Type: T1
The first parameter of the function to be called
Type Parameters
- T1
- The type of function to be called
See Also