()
| 84 | } |
| 85 | |
| 86 | func (device *Device) GetOutboundElementsContainer() *QueueOutboundElementsContainer { |
| 87 | c := device.pool.outboundElementsContainer.Get().(*QueueOutboundElementsContainer) |
| 88 | c.Mutex = sync.Mutex{} |
| 89 | return c |
| 90 | } |
| 91 | |
| 92 | func (device *Device) PutOutboundElementsContainer(c *QueueOutboundElementsContainer) { |
| 93 | for i := range c.elems { |
no test coverage detected