(id string)
| 1249 | } |
| 1250 | |
| 1251 | func (h *Host) isPluginFused(id string) bool { |
| 1252 | if h == nil { |
| 1253 | return false |
| 1254 | } |
| 1255 | h.mu.Lock() |
| 1256 | _, fused := h.fused[id] |
| 1257 | h.mu.Unlock() |
| 1258 | return fused |
| 1259 | } |
| 1260 | |
| 1261 | type accessAdapter struct { |
| 1262 | host *Host |
no outgoing calls