()
| 725 | } |
| 726 | |
| 727 | func (w *messageWriter) Close() error { |
| 728 | if w.err != nil { |
| 729 | return w.err |
| 730 | } |
| 731 | return w.flushFrame(true, nil) |
| 732 | } |
| 733 | |
| 734 | // WritePreparedMessage writes prepared message into connection. |
| 735 | func (c *Conn) WritePreparedMessage(pm *PreparedMessage) error { |
nothing calls this directly
no test coverage detected