Flowdock
method

perform_processing

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Base
perform_processing() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailbox/lib/action_mailbox/base.rb, line 80
    def perform_processing #:nodoc:
      track_status_of_inbound_email do
        run_callbacks :process do
          process
        end
      end
    rescue => exception
      # TODO: Include a reference to the inbound_email in the exception raised so error handling becomes easier
      rescue_with_handler(exception) || raise
    end
Register or log in to add new notes.