C# 클래스 GSF.Threading.WorkerThreadSynchronization.CallbackRequest

A callback request. Cancel this request when the callback is no longer needed.
상속: IDisposable
파일 보기 프로젝트 열기: GridProtectionAlliance/openHistorian

공개 메소드들

메소드 설명
CallbackRequest ( System.Action callback ) : System

Creates a callback request.

Cancel ( ) : void

Cancels the callback.

Dispose ( ) : void

Disposes of the callback

Run ( ) : void

Executes the callback item

메소드 상세

CallbackRequest() 공개 메소드

Creates a callback request.
public CallbackRequest ( System.Action callback ) : System
callback System.Action the action to perform.
리턴 System

Cancel() 공개 메소드

Cancels the callback.
public Cancel ( ) : void
리턴 void

Dispose() 공개 메소드

Disposes of the callback
public Dispose ( ) : void
리턴 void

Run() 공개 메소드

Executes the callback item
public Run ( ) : void
리턴 void