Sha256: 8f498dd8bd594e21ab882b237ef3cebaf2bdd9a3f1cf72d89af22f5c7f784ebc

Contents?: true

Size: 277 Bytes

Versions: 1

Compression:

Stored size: 277 Bytes

Contents

module Stomper
  module Frames
    # Encapsulates an "ABORT" frame from the Stomp Protocol.
    class Abort < Stomper::Frames::ClientFrame
      def initialize(transaction_id, headers={})
        super(headers.merge(:transaction => transaction_id))
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stomper-1.0.0 lib/stomper/frames/abort.rb