Esempio n. 1
0
//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])
}
Esempio n. 2
0
//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]))
}
Esempio n. 3
0
//ClientID returns the client id part off the MetaData byte array
func (m MetaData) ClientID() UUID {
	return UUID(fb.GetUint64(m[0:fb.SizeUint64]))
}