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


Golang QueryOptions.Datacenter方法代碼示例

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


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

示例1: QueryOptions

func (c *Cmd) QueryOptions() *consulapi.QueryOptions {
	csl := c.consul

	queryOpts := new(consulapi.QueryOptions)
	if csl.token != "" {
		queryOpts.Token = csl.token
	}

	if csl.dc != "" {
		queryOpts.Datacenter = csl.dc
	}

	if csl.waitIndex != 0 {
		queryOpts.WaitIndex = csl.waitIndex
	}

	if csl.consistent {
		queryOpts.RequireConsistent = csl.consistent
	}

	if csl.stale {
		queryOpts.AllowStale = csl.stale
	}

	return queryOpts
}
開發者ID:CiscoCloud,項目名稱:consul-cli,代碼行數:26,代碼來源:consul.go

示例2: getServiceEntries

func (data *consulData) getServiceEntries(health *api.Health) (entries []*api.ServiceEntry, err error) {
	options := api.QueryOptions{}
	if data.dc != "" {
		options.Datacenter = data.dc
	}

	entries, _, err = health.Service(data.serviceName, data.serviceTag, true, &options)
	return entries, err
}
開發者ID:Telmo,項目名稱:fpm-recipes,代碼行數:9,代碼來源:consul_url.go

示例3: QueryOptions

func (m *Meta) QueryOptions() *consulapi.QueryOptions {
	queryOpts := new(consulapi.QueryOptions)
	if m.token != "" {
		queryOpts.Token = m.token
	}

	if m.dc != "" {
		queryOpts.Datacenter = m.dc
	}

	if m.waitIndex != 0 {
		queryOpts.WaitIndex = m.waitIndex
	}

	return queryOpts
}
開發者ID:agy,項目名稱:consul-cli,代碼行數:16,代碼來源:meta.go

示例4: QueryOptions

func (m *Meta) QueryOptions() *consulapi.QueryOptions {
	queryOpts := new(consulapi.QueryOptions)

	if os.Getenv("CONSUL_TOKEN") != "" {
		queryOpts.Token = os.Getenv("CONSUL_TOKEN")
	}

	if m.token != "" {
		queryOpts.Token = m.token
	}

	if m.dc != "" {
		queryOpts.Datacenter = m.dc
	}

	if m.waitIndex != 0 {
		queryOpts.WaitIndex = m.waitIndex
	}

	return queryOpts
}
開發者ID:darron,項目名稱:consul-cli,代碼行數:21,代碼來源:meta.go


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