OSGI bundle 生命週期

2021-09-28 10:52:35 字數 907 閱讀 1991

osgi bundle共有六個生命週期:

installed (安裝期)

resolved (解析期)

starting (啟動期)

active(活躍期)

stopping(停止期)

uninstalled (解除安裝期)

關係圖:

osgi命令:

命令用途

使用方法

ss展示已安裝的bundle

[-s   ] - display installed bundles (short status)

install

安裝指定url對應的檔案為bundle

install and optionally start bundle from the given url

uninstall

解除安裝指定id標識的bundle

uninstall the specified bundle(s)

start

啟動指定id標識的bundle

start the specified bundle(s)

stop

停止指定id標識的bundle

stop the specified bundle(s)

update

同步bundle和bundle的載入檔案

update the specified bundle(s)

React 生命週期 生命週期方法

生命週期 掛載 更新 解除安裝 元件被建立 執行初始化 並被掛載到dom中,完成元件的第一次渲染 constructor props getderivedstatefromprops props,state render componentdidmount 元件被建立時會首先呼叫元件的構造方法,接受...

actived生命週期 Vuejs 生命週期

每個 vue 例項在被建立時都要經過一系列的初始化過程。如需要設定資料監聽 編譯模板 將例項掛載到 dom 並在資料變化時更新 dom 等。同時在這個過程中也會執行一些叫做生命週期鉤子的函式,這給了使用者在不同階段新增自己的 的機會。乙個 vue 例項 我們建立乙個 vue 例項,並在每個階段驗證 ...

生命週期篇 一 Activity生命週期理解

乙個activity 通俗點就叫乙個介面吧 在實際使用中會有幾種狀態 1.正在顯示 處於當前螢幕最頂層 2.尚且可見,但不可用 在其他介面下面,但未被完全覆蓋 3.完全不可見 被其他介面完全覆蓋,最常見的就是切換到桌面 以上是實際使用android手機的時候最直觀的介面狀態,那麼接下來我們來 一下,...