This should return a finite or infinite iterable of delays (each as a floating point number of seconds) in-between each failed reconnection attempt. Note that if the iterable is finite, reconnection attempts will cease once the iterable is exhausted.
(self)
| 616 | """ |
| 617 | |
| 618 | def new_schedule(self): |
| 619 | """ |
| 620 | This should return a finite or infinite iterable of delays (each as a |
| 621 | floating point number of seconds) in-between each failed reconnection |
| 622 | attempt. Note that if the iterable is finite, reconnection attempts |
| 623 | will cease once the iterable is exhausted. |
| 624 | """ |
| 625 | raise NotImplementedError() |
| 626 | |
| 627 | |
| 628 | class ConstantReconnectionPolicy(ReconnectionPolicy): |
no outgoing calls
no test coverage detected