本文整理汇总了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)
}
示例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)
}
示例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)
}
}
}
}