Sha256: fb520b1a4be546f679529eee11bf4f31cb82301e32b56d3d1f917b565a10d961
Contents?: true
Size: 407 Bytes
Versions: 4
Compression:
Stored size: 407 Bytes
Contents
module Stomper module Frames # Encapsulates a "COMMIT" frame from the Stomp Protocol. # # See the {Stomp Protocol Specification}[http://stomp.codehaus.org/Protocol] # for more details. class Commit < Stomper::Frames::ClientFrame def initialize(transaction_id, headers={}) super('COMMIT', 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/commit.rb |
stomper-0.3.2 | lib/stomper/frames/commit.rb |
stomper-0.3.1 | lib/stomper/frames/commit.rb |
stomper-0.3.0 | lib/stomper/frames/commit.rb |