(self, period_millis, aggregate_function=None)
| 69 | LOGGER.exception('Could not notify on_close, observer ' + str(observer)) |
| 70 | |
| 71 | def time_buffered(self, period_millis, aggregate_function=None): |
| 72 | return _TimeBufferedPipe(self, period_millis, aggregate_function) |
| 73 | |
| 74 | def map(self, map_function): |
| 75 | return _MappedPipe(self, map_function) |