Defines temporal behavior of windows and temporal joins.
| 19 | |
| 20 | @dataclass |
| 21 | class CommonBehavior(Behavior): |
| 22 | """Defines temporal behavior of windows and temporal joins.""" |
| 23 | |
| 24 | delay: IntervalType | None |
| 25 | cutoff: IntervalType | None |
| 26 | keep_results: bool |
| 27 | |
| 28 | |
| 29 | def common_behavior( |