Update updates the state of the mailbox, or creates if does not exist
(oldMessages int, newMessages int)
| 61 | |
| 62 | // Update updates the state of the mailbox, or creates if does not exist |
| 63 | func (mh *MailboxHandle) Update(oldMessages int, newMessages int) error { |
| 64 | return mh.m.Update(mh.key, oldMessages, newMessages) |
| 65 | } |
| 66 | |
| 67 | // Delete deletes the mailbox |
| 68 | func (mh *MailboxHandle) Delete() error { |