module ActionMailbox::Callbacks

Included modules:
ActiveSupport::Callbacks

Defines the callbacks related to processing.

Constants

TERMINATOR

Public Instance Methods

after_processing(*methods, &block) Show source
# File actionmailbox/lib/action_mailbox/callbacks.rb, line 25
def after_processing(*methods, &block)
  set_callback(:process, :after, *methods, &block)
end
around_processing(*methods, &block) Show source
# File actionmailbox/lib/action_mailbox/callbacks.rb, line 29
def around_processing(*methods, &block)
  set_callback(:process, :around, *methods, &block)
end
before_processing(*methods, &block) Show source
# File actionmailbox/lib/action_mailbox/callbacks.rb, line 21
def before_processing(*methods, &block)
  set_callback(:process, :before, *methods, &block)
end

© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.