()
| 60 | } |
| 61 | |
| 62 | func (ch NativeChannel) Close() { |
| 63 | close(ch) |
| 64 | } |
| 65 | |
| 66 | // DeadChannel is a placeholder implementation of the Channel interface with no buffer |
| 67 | // that is never ready for reading or writing. Closing a dead channel is a no-op. |
no outgoing calls