コード例 #1
0
ファイル: uniter.go プロジェクト: rogpeppe/juju
// life requests the lifecycle of the given entity from the server.
func (st *State) life(tag string) (params.Life, error) {
	return common.Life(st.caller, uniterFacade, tag)
}
コード例 #2
0
ファイル: deployer.go プロジェクト: klyachin/juju
// unitLife returns the lifecycle state of the given unit.
func (st *State) unitLife(tag names.UnitTag) (params.Life, error) {
	return common.Life(st.caller, deployerFacade, tag)
}
コード例 #3
0
ファイル: firewaller.go プロジェクト: klyachin/juju
// life requests the life cycle of the given entity from the server.
func (st *State) life(tag names.Tag) (params.Life, error) {
	return common.Life(st.caller, firewallerFacade, tag)
}
コード例 #4
0
ファイル: machiner.go プロジェクト: jiasir/juju
// machineLife requests the lifecycle of the given machine from the server.
func (st *State) machineLife(tag names.MachineTag) (params.Life, error) {
	return common.Life(st.caller, machinerFacade, tag)
}
コード例 #5
0
ファイル: provisioner.go プロジェクト: rogpeppe/juju
// machineLife requests the lifecycle of the given machine from the server.
func (st *State) machineLife(tag string) (params.Life, error) {
	return common.Life(st.caller, provisionerFacade, tag)
}