aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/app/jobs/action_mailbox/routing_job.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailbox/app/jobs/action_mailbox/routing_job.rb')
-rw-r--r--actionmailbox/app/jobs/action_mailbox/routing_job.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionmailbox/app/jobs/action_mailbox/routing_job.rb b/actionmailbox/app/jobs/action_mailbox/routing_job.rb
new file mode 100644
index 0000000000..fc3388daff
--- /dev/null
+++ b/actionmailbox/app/jobs/action_mailbox/routing_job.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+# Routing a new InboundEmail is an asynchronous operation, which allows the ingress controllers to quickly
+# accept new incoming emails without being burdened to hang while they're actually being processed.
+class ActionMailbox::RoutingJob < ActiveJob::Base
+ queue_as { ActionMailbox.queues[:routing] }
+
+ def perform(inbound_email)
+ inbound_email.route
+ end
+end