CoreDispatcher.TryRunIdleAsync(IdleDispatchedHandler) Method

Definition

Attempts to schedule a callback on the UI thread from a worker thread at idle priority, and returns the results asynchronously.

public:
 virtual IAsyncOperation<bool> ^ TryRunIdleAsync(IdleDispatchedHandler ^ agileCallback) = TryRunIdleAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryRunIdleAsync(IdleDispatchedHandler const& agileCallback);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryRunIdleAsync(IdleDispatchedHandler agileCallback);
function tryRunIdleAsync(agileCallback)
Public Function TryRunIdleAsync (agileCallback As IdleDispatchedHandler) As IAsyncOperation(Of Boolean)

Parameters

agileCallback
IdleDispatchedHandler

The callback on which the idle priority dispatcher returns when the event is dispatched.

Returns

The asynchronous operation.

Attributes

Applies to

See also