IsDelivered checks if a message is delivered
()
| 128 | |
| 129 | // IsDelivered checks if a message is delivered |
| 130 | func (message *Message) IsDelivered() bool { |
| 131 | return message.Status == MessageStatusDelivered |
| 132 | } |
| 133 | |
| 134 | // IsPending checks if a message is pending |
| 135 | func (message *Message) IsPending() bool { |
no outgoing calls
no test coverage detected