-- Publisher: Send notification NOTIFY new_order, 'Order #12345 created'; -- Subscriber: Listen for notifications LISTEN new_order;
class CheckoutService def initialize(cart:, user:) @cart = cart @user = user end