| 580 | } |
| 581 | |
| 582 | void Database::Linger::set(unsigned seconds) |
| 583 | { |
| 584 | if (dbb && !active) |
| 585 | { |
| 586 | FbLocalStatus s; |
| 587 | TimerInterfacePtr()->start(&s, this, seconds * 1000 * 1000); |
| 588 | check(&s); |
| 589 | active = true; |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | void Database::Linger::destroy() |
| 594 | { |
no test coverage detected