Done returns a channel that is closed when the stream is terminated.
()
| 105 | |
| 106 | // Done returns a channel that is closed when the stream is terminated. |
| 107 | func (s *bidiSyncCommandStream) Done() <-chan struct{} { |
| 108 | return s.done |
| 109 | } |
| 110 | |
| 111 | func (s *bidiSyncCommandStream) ReadChannel() chan *v1sync.SyncStreamItem { |
| 112 | return s.recvChan |
no outgoing calls