class Qpid::Proton::Reactor::InternalTransactionHandler
Public Class Methods
new()
click to toggle source
Calls superclass method
Qpid::Proton::Handler::OutgoingMessageHandler.new
# File lib/reactor/container.rb, line 25 def initialize super end
Public Instance Methods
on_settled(event)
click to toggle source
# File lib/reactor/container.rb, line 29 def on_settled(event) if event.delivery.respond_to? :transaction event.transaction = event.delivery.transaction event.delivery.transaction.handle_outcome(event) end end