本文整理汇总了Golang中github.com/control-center/serviced/coordinator/client.Connection.CreateEphemeral方法的典型用法代码示例。如果您正苦于以下问题:Golang Connection.CreateEphemeral方法的具体用法?Golang Connection.CreateEphemeral怎么用?Golang Connection.CreateEphemeral使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/control-center/serviced/coordinator/client.Connection
的用法示例。
在下文中一共展示了Connection.CreateEphemeral方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: addItem
//Add node to the key in registry. Returns the path of the node in the registry
func (r *registryType) addItem(conn client.Connection, key string, nodeID string, node client.Node) (string, error) {
if err := r.ensureKey(conn, key); err != nil {
glog.Errorf("error with addItem.ensureKey(%s): %+v", r.getPath(key), err)
return "", err
}
//TODO: make ephemeral
path := r.getPath(key, nodeID)
glog.V(3).Infof("Adding to %s: %#v", path, node)
if r.ephemeral {
var err error
if path, err = conn.CreateEphemeral(path, node); err != nil {
glog.Errorf("error with addItem.CreateEphemeral(%s) %+v", path, err)
return "", err
}
} else {
if err := conn.Create(path, node); err != nil {
glog.Errorf("error with addItem.Create(%s) %+v", path, err)
return "", err
}
}
return path, nil
}