AdapterState interface
與複合配接器狀態互動的功能。
方法
get |
取得目前狀態 |
off |
取消訂閱處理常式至 stateChanged 事件。 |
on |
訂閱處理常式至 stateChanged 事件。 |
方法詳細資料
getState()
取得目前狀態
function getState(): TState
傳回
TState
offStateChange((state: TState) => void)
取消訂閱處理常式至 stateChanged 事件。
function offStateChange(handler: (state: TState) => void)
參數
- handler
-
(state: TState) => void
onStateChange((state: TState) => void)
訂閱處理常式至 stateChanged 事件。
function onStateChange(handler: (state: TState) => void)
參數
- handler
-
(state: TState) => void