lib/stomper/frames/disconnect.rb in stomper-0.4 vs lib/stomper/frames/disconnect.rb in stomper-1.0.0
- old
+ new
@@ -1,13 +1,10 @@
module Stomper
module Frames
# Encapsulates a "DISCONNECT" frame from the Stomp Protocol.
- #
- # See the {Stomp Protocol Specification}[http://stomp.codehaus.org/Protocol]
- # for more details.
class Disconnect < Stomper::Frames::ClientFrame
def initialize(headers={})
- super('DISCONNECT', headers)
+ super(headers)
end
end
end
end