sharedBufferChannel implements SimpleChannel and is created by the public SharedBuffer type below
| 9 | //sharedBufferChannel implements SimpleChannel and is created by the public |
| 10 | //SharedBuffer type below |
| 11 | type sharedBufferChannel struct { |
| 12 | in chan interface{} |
| 13 | out chan interface{} |
| 14 | buf *queue.Queue |
| 15 | closed bool |
| 16 | } |
| 17 | |
| 18 | func (sch *sharedBufferChannel) In() chan<- interface{} { |
| 19 | return sch.in |
nothing calls this directly
no outgoing calls
no test coverage detected