1994 1995 <1996> 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 | Index | 1994 1995 <1996> 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: "Edge sensitive" record processsing. |
From: | [email protected] (S. Joshua Stein) |
To: | [email protected], [email protected] |
Date: | Fri, 16 Aug 1996 09:43:47 -0500 |
Take a look at the wait record (misnomer - should be called the "whiz bang zoom record"). >From the Record Reference manual: ------- Output Link Execution Options The outputs of the wait record are not necessarily executed every time the record processes. This allows "downstream" processing of records to be done conditionally. The "output execution" options are decsribed below. Every Time: Outputs are executed every time the record processes. On Change: Outputs are executed if the result of the calculation (VAL) is different than the previous time the record was processed. When Zero: Outputs are executed if the result of the calculation is zero. When Non-zero: Outputs are executed if the result of the calculation is not zero. Transition To Zero: Outputs are executed if the result of the calculation is zero and the previous value was not zero. Transition To Non-zero: Outputs are executed if the result of the calculation is not zero and the previous value was zero. Hope this helps. <josH>