コード例 #1
0
ファイル: metadata.go プロジェクト: netbrain/goatpad
//ClientMessageNumber returns the message number part
//off the MetaData byte array
func (m MetaData) ClientMessageNumber() uint64 {
	return fb.GetUint64(m[fb.SizeUint64 : fb.SizeUint64*2])
}
コード例 #2
0
ファイル: metadata.go プロジェクト: netbrain/goatpad
//TransactionID returns the transaction id part off
//the MetaData byte array
func (m MetaData) TransactionID() UUID {
	return UUID(fb.GetUint64(m[fb.SizeUint64*2 : fb.SizeUint64*3]))
}
コード例 #3
0
ファイル: metadata.go プロジェクト: netbrain/goatpad
//ClientID returns the client id part off the MetaData byte array
func (m MetaData) ClientID() UUID {
	return UUID(fb.GetUint64(m[0:fb.SizeUint64]))
}