----------------------------------------------------------------------------- Disable polling of a value -----------------------------------------------------------------------------
| 748 | // Disable polling of a value |
| 749 | //----------------------------------------------------------------------------- |
| 750 | bool Manager::DisablePoll |
| 751 | ( |
| 752 | ValueID const &_valueId |
| 753 | ) |
| 754 | { |
| 755 | if( Driver* driver = GetDriver( _valueId.GetHomeId() ) ) |
| 756 | { |
| 757 | return( driver->DisablePoll( _valueId ) ); |
| 758 | } |
| 759 | |
| 760 | Log::Write( LogLevel_Info, "mgr, DisablePoll failed - Driver with Home ID 0x%.8x is not available", _valueId.GetHomeId() ); |
| 761 | return false; |
| 762 | } |
| 763 | |
| 764 | //----------------------------------------------------------------------------- |
| 765 | // <Manager::isPolled> |