Amazon.Runtime.Internal.UnityRequestQueue.EnqueueCallback C# (CSharp) Method

EnqueueCallback() public method

Enqueues a callback method that should be invoked on the main thread by the UnityMainThreadDispatcher.
public EnqueueCallback ( RuntimeAsyncResult asyncResult ) : void
asyncResult RuntimeAsyncResult Instance of RuntimeAsyncResult that contains /// all the information about the callback.
return void
        public void EnqueueCallback(RuntimeAsyncResult asyncResult)
        {
            lock (_callbacksLock)
            {
                _callbacks.Enqueue(asyncResult);
            }
        }