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


Golang PortTypeIf.Direction方法代碼示例

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


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

示例1: removePort

func (n *node) removePort(pt bh.PortTypeIf) {
	var list *portList
	if pt.Direction() == gr.InPort {
		list = &n.inPort
	} else {
		list = &n.outPort
	}
	var i int
	for i = 0; i < len(list.Ports()); i++ {
		if list.Ports()[i].Name() == pt.Name() {
			break
		}
	}
	toRemove := list.Ports()[i]
	for _, c := range toRemove.Connections() {
		c.RemoveConnection(toRemove)
	}
	list.Remove(toRemove)
}
開發者ID:axel-freesp,項目名稱:sge,代碼行數:19,代碼來源:node.go

示例2: RemoveNamedPortType

func (t *nodeType) RemoveNamedPortType(p bh.PortTypeIf) {
	for _, impl := range t.implementation.Implementations() {
		if impl.ImplementationType() == bh.NodeTypeGraph {
			if p.Direction() == gr.InPort {
				impl.Graph().(*signalGraphType).removeInputNodeFromPortType(p)
			} else {
				impl.Graph().(*signalGraphType).removeOutputNodeFromPortType(p)
			}
		}
	}
	for _, n := range t.instances.Nodes() {
		n.(*node).removePort(p.(*portType))
	}
	var list *portTypeList
	if p.Direction() == gr.InPort {
		list = &t.inPorts
	} else {
		list = &t.outPorts
	}
	list.Remove(p)
}
開發者ID:axel-freesp,項目名稱:sge,代碼行數:21,代碼來源:nodetype.go

示例3: AddNamedPortType

func (t *nodeType) AddNamedPortType(p bh.PortTypeIf) {
	if p.Direction() == gr.InPort {
		t.inPorts.Append(p)
	} else {
		t.outPorts.Append(p)
	}
	for _, n := range t.instances.Nodes() {
		if p.Direction() == gr.InPort {
			n.(*node).addInPort(p)
		} else {
			n.(*node).addOutPort(p)
		}
	}
	for _, impl := range t.implementation.Implementations() {
		if impl.ImplementationType() == bh.NodeTypeGraph {
			if p.Direction() == gr.InPort {
				impl.Graph().(*signalGraphType).addInputNodeFromPortType(p)
			} else {
				impl.Graph().(*signalGraphType).addOutputNodeFromPortType(p)
			}
		}
	}
}
開發者ID:axel-freesp,項目名稱:sge,代碼行數:23,代碼來源:nodetype.go


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