(elem *TCElement)
| 113 | } |
| 114 | |
| 115 | func (device *Device) PutTCElement(elem *TCElement) { |
| 116 | elem.clearPointers() |
| 117 | elem.Priority = 0 |
| 118 | device.pool.tcElements.Put(elem) |
| 119 | } |
| 120 | |
| 121 | func (device *Device) GetInboundElement() *QueueInboundElement { |
| 122 | return device.pool.inboundElements.Get().(*QueueInboundElement) |
no test coverage detected