Files
hmq/lib/message/pubrel.go
zhouyuyan b4ec8ea870 packet
2017-08-22 16:45:01 +08:00

32 lines
990 B
Go
Executable File

// Copyright (c) 2014 The SurgeMQ Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package message
// A PUBREL Packet is the response to a PUBREC Packet. It is the third packet of the
// QoS 2 protocol exchange.
type PubrelMessage struct {
PubackMessage
}
var _ Message = (*PubrelMessage)(nil)
// NewPubrelMessage creates a new PUBREL message.
func NewPubrelMessage() *PubrelMessage {
msg := &PubrelMessage{}
msg.SetType(PUBREL)
return msg
}