C# 클래스 Tup.Utilities.ThreadHelper

Thread(WPF) Helper
파일 보기 프로젝트 열기: tupunco/Tup.Utilities

공개 메소드들

메소드 설명
ThreadPool_QueueUserWorkItem ( WaitCallback callBack ) : void

Queues a method for execution. The method executes when a thread pool thread becomes available.

ThreadPool_QueueUserWorkItem ( WaitCallback callBack, object state, Action failedAction = null ) : void

Queues a method for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.

메소드 상세

ThreadPool_QueueUserWorkItem() 공개 정적인 메소드

Queues a method for execution. The method executes when a thread pool thread becomes available.
public static ThreadPool_QueueUserWorkItem ( WaitCallback callBack ) : void
callBack WaitCallback
리턴 void

ThreadPool_QueueUserWorkItem() 공개 정적인 메소드

Queues a method for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.
public static ThreadPool_QueueUserWorkItem ( WaitCallback callBack, object state, Action failedAction = null ) : void
callBack WaitCallback
state object
failedAction Action
리턴 void