當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Message.OldBytes方法代碼示例

本文整理匯總了Golang中github.com/Terry-Mao/gopush-cluster/rpc.Message.OldBytes方法的典型用法代碼示例。如果您正苦於以下問題:Golang Message.OldBytes方法的具體用法?Golang Message.OldBytes怎麽用?Golang Message.OldBytes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/Terry-Mao/gopush-cluster/rpc.Message的用法示例。


在下文中一共展示了Message.OldBytes方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: writeMsg

// writeMsg write msg to conn.
func (c *SeqChannel) writeMsg(key string, m *myrpc.Message) (err error) {
	var (
		oldMsg, msg, sendMsg []byte
	)
	// push message
	for e := c.conn.Front(); e != nil; e = e.Next() {
		conn, _ := e.Value.(*Connection)
		// if version empty then use old protocol
		if conn.Version == "" {
			if oldMsg == nil {
				if oldMsg, err = m.OldBytes(); err != nil {
					return
				}
			}
			sendMsg = oldMsg
		} else {
			if msg == nil {
				if msg, err = m.Bytes(); err != nil {
					return
				}
			}
			sendMsg = msg
		}
		// TODO use goroutine
		conn.Write(key, sendMsg)
	}
	return
}
開發者ID:kirk91,項目名稱:gopush-cluster,代碼行數:29,代碼來源:seq_channel.go

示例2: PushMsg

// PushMsg implements the Channel PushMsg method.
func (c *SeqChannel) PushMsg(key string, m *myrpc.Message, expire uint) error {
	var (
		oldMsg, msg, sendMsg []byte
		err                  error
	)
	client := myrpc.MessageRPC.Get()
	if client == nil {
		return ErrMessageRPC
	}
	c.mutex.Lock()
	// private message need persistence
	// if message expired no need persistence, only send online message
	// rewrite message id
	m.MsgId = c.timeID.ID()
	if m.GroupId != myrpc.PublicGroupId && expire > 0 {
		args := &myrpc.MessageSavePrivateArgs{Key: key, Msg: m.Msg, MsgId: m.MsgId, Expire: expire}
		ret := 0
		if err = client.Call(myrpc.MessageServiceSavePrivate, args, &ret); err != nil {
			c.mutex.Unlock()
			glog.Errorf("%s(\"%s\", \"%v\", &ret) error(%v)", myrpc.MessageServiceSavePrivate, key, args, err)
			return err
		}
	}
	// push message
	for e := c.conn.Front(); e != nil; e = e.Next() {
		conn, _ := e.Value.(*Connection)
		// if version empty then use old protocol
		if conn.Version == "" {
			if oldMsg == nil {
				oldMsg, err = m.OldBytes()
				if err != nil {
					c.mutex.Unlock()
					return err
				}
			}
			sendMsg = oldMsg
		} else {
			if msg == nil {
				msg, err = m.Bytes()
				if err != nil {
					c.mutex.Unlock()
					return err
				}
			}
			sendMsg = msg
		}
		conn.Write(key, sendMsg)
	}
	c.mutex.Unlock()
	return nil
}
開發者ID:rogerwei,項目名稱:gopush-cluster,代碼行數:52,代碼來源:seq_channel.go


注:本文中的github.com/Terry-Mao/gopush-cluster/rpc.Message.OldBytes方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。