Propriedade Scheduler.CurrentThread
Obtém o agendador que agenda o trabalho o mais rápido possível no thread atual.
Namespace:System.Reactive.Concurrency
Assembly: System.Reactive (em System.Reactive.dll)
Sintaxe
'Declaration
Public Shared ReadOnly Property CurrentThread As CurrentThreadScheduler
Get
'Usage
Dim value As CurrentThreadScheduler
value = Scheduler.CurrentThread
public static CurrentThreadScheduler CurrentThread { get; }
public:
static property CurrentThreadScheduler^ CurrentThread {
CurrentThreadScheduler^ get ();
}
static member CurrentThread : CurrentThreadScheduler
static function get CurrentThread () : CurrentThreadScheduler
Valor da propriedade
Tipo: System.Reactive.Concurrency.CurrentThreadScheduler
O agendador de thread atual.
Comentários
O agendador CurrentThread agendará ações a serem executadas no thread que faz a chamada original. A ação não é executada imediatamente, mas é colocada em uma fila e executada somente após a conclusão da ação atual.