function Messaging_Message::check_status in Messaging 7
Check message status, will return FALSE if we should stop processing
4 calls to Messaging_Message::check_status()
- Messaging_Message::do_build in ./
messaging.message.inc  - Check parameters and go for alter hook
 - Messaging_Message::process_done in ./
messaging.message.inc  - Mark operation as done for the current method
 - Messaging_Message::process_step in ./
messaging.message.inc  - Run operations on message for current method if not done before
 - Messaging_Message::set_status in ./
messaging.message.inc  - Set success status and return status check
 
File
- ./
messaging.message.inc, line 277  - Drupal Messaging Framework - Message class file
 
Class
- Messaging_Message
 - Message class
 
Code
function check_status() {
  return !empty($this->method) && !$this->discard && !$this->error && !$this->deleted;
}