[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Discuss-gnuradio] Flow_Graph classes and Modules
From: |
Eric Blossom |
Subject: |
Re: [Discuss-gnuradio] Flow_Graph classes and Modules |
Date: |
Fri, 7 Jul 2006 10:38:23 -0700 |
User-agent: |
Mutt/1.5.9i |
On Fri, Jul 07, 2006 at 10:05:08AM -0700, Quenton Bonds wrote:
> Does anyone know where to find documentation for the Flow_Graph classes
> and modules such as connect?
def start (self):
'''start graph, forking thread(s), return immediately'''
def stop (self):
'''tells scheduler to stop and waits for it to happen'''
def wait (self):
'''waits for scheduler to stop'''
def run (self):
'''start graph, wait for completion'''
def connect (self, *points):
'''connect requires two or more arguments that can be coerced to
endpoints.
If more than two arguments are provided, they are connected together
successively.
'''