view flax/Ports.py @ 144:f433e95f2e42

subcomposer is now a module. You can still run it from the command subcomposer is now a module. You can still run it from the command line. If you want it to work as a module, you need to call the considersendupdate() method with the period of the after loop that it should use.
author dmcc
date Wed, 02 Jul 2003 10:21:59 +0000
parents 45b12307c695
children
line wrap: on
line source

# super rough code

class AbstractPort:
    def __init__(self):
        pass
    def put_data(self, value):
        pass
    def get_data(self):
        pass

class Port(AbstractPort):
    "Connects from a node to exactly one node."
    def __init__(self, value=None):
        AbstractPort.__init__(self)
        self.value = value
    def put_data(self, value):
        self.value = value
    def get_data(self):
        return self.value

class MultiPort(AbstractPort):
    "Connects from a node to any number of nodes."
    def __init__(self, values=None):
        AbstractPort.__init__(self)
        self.values = values
    def put_data(self, values):
        self.values = values
    def get_data(self):
        return self.values