(elem *QueueInboundElement)
| 123 | } |
| 124 | |
| 125 | func (device *Device) PutInboundElement(elem *QueueInboundElement) { |
| 126 | elem.clearPointers() |
| 127 | device.pool.inboundElements.Put(elem) |
| 128 | } |
| 129 | |
| 130 | func (device *Device) GetOutboundElement() *QueueOutboundElement { |
| 131 | return device.pool.outboundElements.Get().(*QueueOutboundElement) |
no test coverage detected