PluginBusy reports whether a plugin dynamic library is loaded or being loaded.
(id string)
| 81 | |
| 82 | // PluginBusy reports whether a plugin dynamic library is loaded or being loaded. |
| 83 | func (h *Host) PluginBusy(id string) bool { |
| 84 | return h != nil && h.inner != nil && h.inner.PluginBusy(id) |
| 85 | } |
| 86 | |
| 87 | // UnloadPlugin removes one plugin from the active runtime and closes its dynamic library. |
| 88 | func (h *Host) UnloadPlugin(id string) bool { |
nothing calls this directly
no test coverage detected