Method | Description | |
---|---|---|
DequeueCallback ( ) : |
Dequeues an callback from the queue of pending callbacks that need to be invoked.
|
|
DequeueMainThreadOperation ( ) : System.Action | ||
DequeueRequest ( ) : IUnityHttpRequest |
Dequeues a request from the queue of pending requests.
|
|
EnqueueCallback ( |
Enqueues a callback method that should be invoked on the main thread by the UnityMainThreadDispatcher.
|
|
EnqueueRequest ( IUnityHttpRequest request ) : void |
Enqueues a request to be processed by the UnityMainThreadDispatcher. Unity
|
|
ExecuteOnMainThread ( System.Action action ) : void |
Enqueue an anonymous method on main thread
|
Method | Description | |
---|---|---|
UnityRequestQueue ( ) : System |
The private contructor for the singleton class.
|
public DequeueCallback ( ) : |
||
return |
public DequeueMainThreadOperation ( ) : System.Action | ||
return | System.Action |
public DequeueRequest ( ) : IUnityHttpRequest | ||
return | IUnityHttpRequest |
public EnqueueCallback ( |
||
asyncResult | Instance of RuntimeAsyncResult that contains /// all the information about the callback. | |
return | void |
public EnqueueRequest ( IUnityHttpRequest request ) : void | ||
request | IUnityHttpRequest | An instance of UnityWebRequest. |
return | void |
public ExecuteOnMainThread ( System.Action action ) : void | ||
action | System.Action | |
return | void |