(client Client)
| 60 | } |
| 61 | |
| 62 | func (b *BrokerType) SetClient(client Client) { |
| 63 | b.Lock.Lock() |
| 64 | defer b.Lock.Unlock() |
| 65 | b.Client = client |
| 66 | } |
| 67 | |
| 68 | func (b *BrokerType) GetClient() Client { |
| 69 | b.Lock.Lock() |
no outgoing calls
no test coverage detected