Uses of Class
com.pervasive.datarush.commons.util.Timeout
-
Packages that use Timeout Package Description com.pervasive.datarush.commons.util Provides common utilitiescom.pervasive.datarush.ports.physical Provides classes and interfaces for accessing and producing the data flowing between operators in a dataflow graph. -
-
Uses of Timeout in com.pervasive.datarush.commons.util
Fields in com.pervasive.datarush.commons.util declared as Timeout Modifier and Type Field Description static TimeoutTimeout. IMMEDIATESpecifies a timeout which is always expired; that is, no period of time at all.static TimeoutTimeout. NEVERSpecifies a timeout which never expires; that is, an infinite period of time.Methods in com.pervasive.datarush.commons.util that return Timeout Modifier and Type Method Description static TimeoutTimeout. millis(long duration)Creates a timeout expiring in the specified number of milliseconds from now.TimeoutTimeout. reset()Resets the timeout to the full duration with which it was created.static TimeoutTimeout. seconds(long duration)Creates a timeout expiring in the specified number of seconds from now.static TimeoutTimeout. timeout(long duration, TimeUnit unit)Creates a timeout expiring in the specified duration from now. -
Uses of Timeout in com.pervasive.datarush.ports.physical
Methods in com.pervasive.datarush.ports.physical with parameters of type Timeout Modifier and Type Method Description longRecordInput. stepUntil(long n, Timeout timeout)Advances the cursor position as many tokens as possible up to the specified number of tokens, within a given amount of time.longRecordInput. stepUntil(Timeout timeout)Advances the cursor position of this input by one token, if it can be be done in a given amount of time.
-