Sha256: b1f2c5fc103ba5ebb71bd221f5ec764c4783bbbe125a79bc506ca9e364a3a29b
Contents?: true
Size: 403 Bytes
Versions: 4
Compression:
Stored size: 403 Bytes
Contents
module Stomper module Frames # Encapsulates an "ACK" frame from the Stomp Protocol. # # See the {Stomp Protocol Specification}[http://stomp.codehaus.org/Protocol] # for more details. class Abort < Stomper::Frames::ClientFrame def initialize(transaction_id, headers={}) super('ABORT', headers) @headers.transaction = transaction_id end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
stomper-0.4 | lib/stomper/frames/abort.rb |
stomper-0.3.2 | lib/stomper/frames/abort.rb |
stomper-0.3.1 | lib/stomper/frames/abort.rb |
stomper-0.3.0 | lib/stomper/frames/abort.rb |