()
| 815 | } |
| 816 | |
| 817 | func (w *WshRpc) setServerDone() { |
| 818 | w.Lock.Lock() |
| 819 | defer w.Lock.Unlock() |
| 820 | w.ServerDone = true |
| 821 | close(w.CtxDoneCh) |
| 822 | utilfn.DrainChannelSafe(w.InputCh, "wshrpc.setServerDone") |
| 823 | } |
| 824 | |
| 825 | func (w *WshRpc) retrySendTimeout(resId string) { |
| 826 | done := func() bool { |
no test coverage detected