Write writes data to the connection. Write can be made to time out and return an Error with Timeout() == true after a fixed time limit; see SetDeadline and SetWriteDeadline.
(b []byte)
| 82 | // Write can be made to time out and return an Error with Timeout() == true |
| 83 | // after a fixed time limit; see SetDeadline and SetWriteDeadline. |
| 84 | Write(b []byte) (n int, err error) |
| 85 | // Close closes the connection socket. |
| 86 | // Any blocked Read or Write operations will be unblocked and return errors. |
| 87 | Close() error |
no outgoing calls