Class PortCounts


  • public class PortCounts
    extends Object
    A record type to describe the number of input and output ports an operator has.
    See Also:
    Operator
    • Field Detail

      • inputs

        public int inputs
      • outputs

        public int outputs
    • Constructor Detail

      • PortCounts

        public PortCounts​(int numInputPorts,
                          int numOutputPorts)
        Constructs a new PortCounts object requesting a change in the number of input and/or output ports.
        Parameters:
        numInputPorts - the requested number of input ports
        numOutputPorts - the requested number of output ports
        See Also:
        Operator.getPortCounts()