class T2Server::Port

Base class of InputPort and OutputPort

Attributes

depth[R]

The “depth” of the port. 0 = a singleton value.

name[R]

The port's name

Private Instance Methods

parse_xml(xml) click to toggle source
   # File lib/t2-server/port.rb
59 def parse_xml(xml)
60   @name = xml_node_attribute(xml, 'name')
61   @depth = xml_node_attribute(xml, 'depth').to_i
62 end