Sha256: 3103488f4f059765b47f1bb02ae23c86491e694610288f5dd7d7af32340904ca
Contents?: true
Size: 284 Bytes
Versions: 1
Compression:
Stored size: 284 Bytes
Contents
module Stomper module Frames # Encapsulates a "SEND" frame from the Stomp Protocol. class Send < Stomper::Frames::ClientFrame def initialize(destination, body, headers={}) super(headers.merge({ :destination => destination }), body) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stomper-1.0.0 | lib/stomper/frames/send.rb |