BridgeHandle is the handle to a bridge for performing operations
| 107 | |
| 108 | // BridgeHandle is the handle to a bridge for performing operations |
| 109 | type BridgeHandle struct { |
| 110 | key *Key |
| 111 | b Bridge |
| 112 | exec func(bh *BridgeHandle) error |
| 113 | executed bool |
| 114 | } |
| 115 | |
| 116 | // ID returns the identifier for the bridge |
| 117 | func (bh *BridgeHandle) ID() string { |
nothing calls this directly
no outgoing calls
no test coverage detected