IsPending checks if a message is pending
()
| 133 | |
| 134 | // IsPending checks if a message is pending |
| 135 | func (message *Message) IsPending() bool { |
| 136 | return message.Status == MessageStatusPending |
| 137 | } |
| 138 | |
| 139 | // IsScheduled checks if a message is scheduled |
| 140 | func (message *Message) IsScheduled() bool { |
no outgoing calls
no test coverage detected