Del deletes the values associated with a key. It is case-sensitive.
(key string)
| 4268 | // Del deletes the values associated with a key. |
| 4269 | // It is case-sensitive. |
| 4270 | func (h Header) Del(key string) { |
| 4271 | delete(h, key) |
| 4272 | } |
| 4273 | |
| 4274 | // NewMsg creates a message for publishing that will use headers. |
| 4275 | func NewMsg(subject string) *Msg { |
no outgoing calls