Method | Description | |
---|---|---|
Dispose ( ) : void |
Exit thread by posting WM_QUIT and release all resources. WM_QUITを送ってスレッドを終了し、リソースを解放する。
|
|
Invoke ( CallbackDelegate action ) : void | ||
MessageThread ( ) : System |
Create new message loop thread. 新しいメッセージループスレッドを作る
|
|
MessageThread ( bool isBackground ) : System |
Create new message loop thread. 新しいメッセージループスレッドを作る
|
|
MessageThread ( bool isBackground, ThreadPriority threadPriority ) : System |
Create new message loop thread. 新しいメッセージループスレッドを作る
|
|
PostMessage ( int msg, |
Post message to the thread. スレッドにメッセージを送る
|
Method | Description | |
---|---|---|
GetCurrentThreadId ( ) : int | ||
IMessageFilter ( |
||
PostThreadMessage ( int idThread, int msg, |
public Invoke ( CallbackDelegate action ) : void | ||
action | CallbackDelegate | |
return | void |
public MessageThread ( bool isBackground ) : System | ||
isBackground | bool | バックグラウンドスレッドにする場合はtrue |
return | System |
public MessageThread ( bool isBackground, ThreadPriority threadPriority ) : System | ||
isBackground | bool | バックグラウンドスレッドにする場合はtrue |
threadPriority | ThreadPriority | スレッドの実行優先度 |
return | System |
public PostMessage ( int msg, |
||
msg | int | |
wParam | ||
lParam | ||
return | void |