新接收的 InboundEmail
不会在 ingress 控制器接收时同步路由。相反,路由将使用 RoutingJob
异步完成,以确保最大程度的并行容量。
默认情况下,所有新创建的 InboundEmail
记录,其状态为 pending
(默认值),将被安排进行自动延迟路由。
方法
- R
实例公共方法
route() 链接
使用在 ApplicationMailbox
上声明的路由规则路由此 InboundEmail
。
来源:显示 | 在 GitHub 上
# File actionmailbox/app/models/action_mailbox/inbound_email/routable.rb, line 21 def route ApplicationMailbox.route self end
route_later() 链接
为此 InboundEmail
排队一个 RoutingJob
。
来源:显示 | 在 GitHub 上
# File actionmailbox/app/models/action_mailbox/inbound_email/routable.rb, line 16 def route_later ActionMailbox::RoutingJob.perform_later self end