The writeable end of the channel.
()
| 53 | type SimpleInChannel interface { |
| 54 | In() chan<- interface{} // The writeable end of the channel. |
| 55 | Close() // Closes the channel. It is an error to write to In() after calling Close(). |
| 56 | } |
| 57 | |
| 58 | // InChannel is an interface representing a writeable channel with a buffer. |
no outgoing calls