本文整理匯總了Golang中github.com/google/uuid.UUID類的典型用法代碼示例。如果您正苦於以下問題:Golang UUID類的具體用法?Golang UUID怎麽用?Golang UUID使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了UUID類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: addContextAssociation
func (s *SlackLink) addContextAssociation(context uuid.UUID, channelID string) {
s.contextChannelsLock.Lock()
s.contextChannels[context.String()] = channelID
s.contextChannelsLock.Unlock()
s.contextBuffersLock.Lock()
s.contextBuffers[context.String()] = bytes.NewBuffer(nil)
s.contextBuffersLock.Unlock()
}
示例2: removeContextAssociation
func (s *SlackLink) removeContextAssociation(context uuid.UUID) {
s.contextChannelsLock.Lock()
delete(s.contextChannels, context.String())
s.contextChannelsLock.Unlock()
s.contextBuffersLock.Lock()
delete(s.contextBuffers, context.String())
s.contextBuffersLock.Unlock()
s.removeSpecialAcknowledgementContext(context)
}
示例3: getSpecialAcknowledgement
func (s *SlackLink) getSpecialAcknowledgement(context uuid.UUID) (*slack.ItemRef, string, bool) {
s.specialAcknowledgementContextsLock.Lock()
defer s.specialAcknowledgementContextsLock.Unlock()
entry, ok := s.specialAcknowledgementContexts[context.String()]
if !ok {
return nil, "", false
}
return entry.Ref, entry.MustContain, true
}
示例4: getContextBuffer
func (s *SlackLink) getContextBuffer(context uuid.UUID) *bytes.Buffer {
s.contextBuffersLock.Lock()
defer s.contextBuffersLock.Unlock()
buf, ok := s.contextBuffers[context.String()]
if !ok {
buf = new(bytes.Buffer)
s.contextBuffers[context.String()] = buf
}
return buf
}
示例5: addSpecialAcknowledgementContext
func (s *SlackLink) addSpecialAcknowledgementContext(context uuid.UUID, ref *slack.ItemRef, mustContain string) {
s.specialAcknowledgementContextsLock.Lock()
defer s.specialAcknowledgementContextsLock.Unlock()
s.specialAcknowledgementContexts[context.String()] = struct {
MustContain string
Ref *slack.ItemRef
}{
MustContain: mustContain,
Ref: ref,
}
}
示例6: getMinecraftPlayer
func (s *SlackLink) getMinecraftPlayer(id uuid.UUID) *MinecraftPlayer {
name, err := s.redis.HGet("playerUUIDToName", id.String()).Result()
if err == redis.Nil {
return &MinecraftPlayer{
UUID: id,
}
} else if err != nil {
log.Printf("error in getMinecraftPlayer: %v", err)
return nil
}
return &MinecraftPlayer{
UUID: id,
Name: name,
}
}
示例7: removeSpecialAcknowledgementContext
func (s *SlackLink) removeSpecialAcknowledgementContext(context uuid.UUID) {
s.specialAcknowledgementContextsLock.Lock()
defer s.specialAcknowledgementContextsLock.Unlock()
delete(s.specialAcknowledgementContexts, context.String())
}